[][src]Trait bigraph::DynamicBigraphFromDigraph

pub trait DynamicBigraphFromDigraph: DynamicBigraph + StaticBigraphFromDigraph + Sized where
    Self::Topology: DynamicGraph,
    Self::EdgeData: Clone
{ fn new_with_completed_nodes(
        _topology: Self::Topology,
        _binode_mapping_function: fn(_: &Self::NodeData) -> Self::NodeData
    ) -> Self { ... }
fn new_with_completed_nodes_and_mirrored_edges(
        topology: Self::Topology,
        binode_mapping_function: fn(_: &Self::NodeData) -> Self::NodeData
    ) -> Self { ... } }

Provided methods

fn new_with_completed_nodes(
    _topology: Self::Topology,
    _binode_mapping_function: fn(_: &Self::NodeData) -> Self::NodeData
) -> Self

Converts the given topology into a bigraph. Missing partners are added.

fn new_with_completed_nodes_and_mirrored_edges(
    topology: Self::Topology,
    binode_mapping_function: fn(_: &Self::NodeData) -> Self::NodeData
) -> Self

Converts the given topology into a bigraph that fulfils the mirror property. Missing partners and mirror edges are added.

Loading content...

Implementors

Loading content...