Home
last modified time | relevance | path

Searched refs:greedy_matching_inner (Results 1 – 1 of 1) sorted by relevance

/external/rust/android-crates-io/crates/petgraph/src/algo/
Dmatching.rs211 let (mates, n_edges) = greedy_matching_inner(&graph); in greedy_matching()
216 fn greedy_matching_inner<G>(graph: &G) -> (Vec<Option<G::NodeId>>, usize) in greedy_matching_inner() function
382 let (mut mate, mut n_edges) = greedy_matching_inner(&graph); in maximum_matching()