pub trait EdgeCount: GraphBase {
fn edge_count(&self) -> usize;
}
Expand description
A graph with a known edge count.
Required methods
fn edge_count(&self) -> usize
fn edge_count(&self) -> usize
Return the number of edges in the graph.
pub trait EdgeCount: GraphBase {
fn edge_count(&self) -> usize;
}
A graph with a known edge count.
Return the number of edges in the graph.