traitgraph 8.1.2

Abstracting over different graph representations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/// A subgraph implementation based on bitvectors.
pub mod bit_vector_subgraph;
/// Iterators that filter out nodes or edges missing from subgraphs.
pub mod filter_iterators;
/// A subgraph implementation that allows to combine multiple subgraphs into one if they are totally ordered by the subset relation.
pub mod incremental_subgraph;
/// A subgraph implementation based on bitvectors.
///
/// This subgraph only allows to enable or disable nodes,
/// and edges are automatically contained if their endpoints exist.
pub mod induced_bit_vector_subgraph;
/// A subgraph implementation that allows to combine multiple subgraphs into one if they are totally ordered by the subset relation.
///
/// This subgraph only allows to enable or disable nodes,
/// and edges are automatically contained if their endpoints exist.
pub mod induced_incremental_subgraph;
/// Inverting subgraphs and computing the union or cut set of subgraphs.
pub mod subgraph_operators;