vf2 1.0.1

VF2 subgraph isomorphism algorithm in Rust.
Documentation
1
2
3
4
5
6
7
use crate::NodeIndex;

/// An isomorphism mapping query nodes to data nodes.
///
/// The value at index `i` is the data node index
/// that query node index `i` maps to.
pub type Isomorphism = Vec<NodeIndex>;