pub struct Vf2Isomorphism {
pub iso: bool,
pub map12: Vec<u32>,
pub map21: Vec<u32>,
}Expand description
Result of an exact VF2 graph-isomorphism test (isomorphic_vf2).
Fields§
§iso: boolWhether the two graphs are isomorphic.
map12: Vec<u32>The permutation taking graph1 to graph2: map12[i] is the image
of vertex i of graph1. Empty when the graphs are not isomorphic.
map21: Vec<u32>The inverse permutation taking graph2 to graph1. Empty when the
graphs are not isomorphic.
Trait Implementations§
Source§impl Clone for Vf2Isomorphism
impl Clone for Vf2Isomorphism
Source§fn clone(&self) -> Vf2Isomorphism
fn clone(&self) -> Vf2Isomorphism
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for Vf2Isomorphism
impl RefUnwindSafe for Vf2Isomorphism
impl Send for Vf2Isomorphism
impl Sync for Vf2Isomorphism
impl Unpin for Vf2Isomorphism
impl UnsafeUnpin for Vf2Isomorphism
impl UnwindSafe for Vf2Isomorphism
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more