[][src]Trait gt_directed_bijective_connection_graph::NodeToSet

pub trait NodeToSet<G> where
    G: Graph
{ fn N2S(&self, s: G::Node, d: &[G::Node]) -> Vec<GraphPath<G>>;
fn node_to_set(&self, s: G::Node, d: &[G::Node]) -> Vec<GraphPath<G>>; }

Required methods

fn N2S(&self, s: G::Node, d: &[G::Node]) -> Vec<GraphPath<G>>

fn node_to_set(&self, s: G::Node, d: &[G::Node]) -> Vec<GraphPath<G>>

Loading content...

Implementors

impl<G, N, D> NodeToSet<G> for G where
    N: Copy + PartialEq + BitAnd<Output = N> + Eq + InterChangeUsize + BitXor<Output = N>,
    D: Copy + InterChangeUsize,
    G: DirectedBijectiveConnectionGraph + Lemma2<G> + Graph<Node = N, Dims = D>, 
[src]

Loading content...