Skip to content

Commit

Permalink
Fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
RaoulLuque committed May 10, 2024
1 parent be24001 commit b235552
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ let graph = UnGraph::<i32, ()>::from_edges(&[
(1, 2), (2, 3), (3, 4),
(1, 4)]);

// Compute treewidth using the negative intersection heuristic, the FillWhilstMST computation method
// and not checking the tree decomposition for correctness after the computation.
// Compute treewidth using the negative intersection heuristic,
// the FillWhilstMST computation method and not checking the
// tree decomposition for correctness after the computation.
let treewidth_upper_bound = compute_treewidth_upper_bound(
&graph,
negative_intersection_heuristic,
Expand Down

0 comments on commit b235552

Please sign in to comment.