[][src]Trait bigraph::DynamicBigraph

pub trait DynamicBigraph: DynamicGraph + StaticBigraph where
    Self::EdgeData: Clone
{ fn add_partner_nodes(&mut self); fn add_mirror_edges(&mut self) { ... } }

Required methods

fn add_partner_nodes(&mut self)

Adds nodes such that the graph becomes a valid bigraph. The indices of existing nodes are not altered.

Loading content...

Provided methods

fn add_mirror_edges(&mut self)

Adds edges such that the graph fulfils the mirror property. Mirror edges get the cloned EdgeData from their existing mirror.

Loading content...

Implementors

impl<Topology: DynamicGraph> DynamicBigraph for NodeBigraphWrapper<Topology> where
    Self::NodeData: BidirectedNodeData,
    Self::EdgeData: Clone
[src]

Loading content...