File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 33use std:: collections:: HashSet ;
44use std:: hash:: Hash ;
55
6- /// Algorithm for finding all maximal cliques in an undirected graph.
6+ /// Find all maximal cliques in an undirected graph.
7+ ///
78/// That is, it lists all subsets of vertices with the two properties that each pair of vertices in
89/// one of the listed subsets is connected by an edge, and no listed subset can have
910/// any additional vertices added to it while preserving its complete connectivity.
3233 result
3334}
3435
35- /// Algorithm for finding all maximal cliques in an undirected graph.
36+ /// Find all maximal cliques in an undirected graph.
37+ ///
3638/// That is, it lists all subsets of vertices with the two properties that each pair of vertices in
3739/// one of the listed subsets is connected by an edge, and no listed subset can have
3840/// any additional vertices added to it while preserving its complete connectivity.
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ use std::marker::PhantomData;
99use rustc_hash:: { FxHashMap , FxHashSet } ;
1010
1111/// A connected component implementation for various generic types.
12+ ///
1213/// This structure is only useful if the default collections used by
1314/// the various functions of the [`connected_components`](self) module
1415/// do not fit your needs.
You can’t perform that action at this time.
0 commit comments