Skip to content

Commit

Permalink
Renaming and format
Browse files Browse the repository at this point in the history
  • Loading branch information
RaoulLuque committed Jun 26, 2024
1 parent f97268a commit 623af5f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "treewidth_heuristic_using_clique_graph"
name = "treewidth-heuristic-using-clique-graphs"
version = "0.1.0"
edition = "2021"
rust-version = "1.76"
Expand All @@ -11,4 +11,4 @@ repository = "https://github.com/RaoulLuque/treewidth-heuristic-clique-graph"
petgraph = "0.6.4"
itertools = "0.13"
rand = "0.8.5"
rustc-hash = { git = "https://github.com/rust-lang/rustc-hash"}
rustc-hash = { version ="2.0.0", git = "https://github.com/rust-lang/rustc-hash"}
1 change: 0 additions & 1 deletion src/fill_bags_while_generating_mst.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ use std::{
hash::BuildHasher,
};

use itertools::Itertools;
use petgraph::{graph::NodeIndex, Graph, Undirected};

pub fn fill_bags_while_generating_mst<N, E, O: Ord, S: Default + BuildHasher + Clone>(
Expand Down
1 change: 1 addition & 0 deletions src/find_path_in_tree.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ use std::hash::{BuildHasher, Hash};
/// Is implemented using a stack and depth first search.
///
/// Returns None if no path exists (should never happen in a tree).
pub fn find_path_in_tree<G, T, S: Default + BuildHasher>(
graph: G,
start: G::NodeId,
Expand Down

0 comments on commit 623af5f

Please sign in to comment.