pub fn solve_vf<'a, N, E, Pattern>(
pattern_graph: &'a Pattern,
base_graph: &'a impl Graph<N, E>,
) -> Vec<MatchedGraph<'a, N, E, Pattern>> ⓘwhere
Pattern: PatternGraph<N, E>,Expand description
Solve a graph matching problem instance using an approach based the VF algorithms.
The algorithm implementation used is provided by the vf_algorithms module.
See the SubgraphAlgorithm::eval documentation on how to use it.