API
WrappedMultiGraphs.asmultiedges
— Methodasmultiedges(edgs) -> Any
Get a collection of SingleMultiEdge
from the edgs
WrappedMultiGraphs.getgraph
— Methodgetgraph(mg::WrappedMultiGraphs.AbstractMultiGraph) -> Any
Get the wrapped graph
WrappedMultiGraphs.multiplicity
— Methodmultiplicity(
mg::MultiDiGraph,
e::Graphs.SimpleGraphs.SimpleEdge
) -> Int64
Get the multiplicity, i.e. the number, of the edge e
WrappedMultiGraphs.multiplicity
— Methodmultiplicity(
mg::MultiGraph,
s::Integer,
d::Integer
) -> Int64
Get the multiplicity, i.e. the number, of an edge with source s
and destination d
.
WrappedMultiGraphs.todirected
— Methodtodirected(mg::MultiGraph) -> MultiDiGraph
Convert to a directed graph
WrappedMultiGraphs.toundirected
— Methodtoundirected(mg::MultiDiGraph) -> MultiGraph
Convert to an undirected graph
WrappedMultiGraphs.MultiDiGraph
— Typemutable struct MultiDiGraph{T<:Integer} <: WrappedMultiGraphs.AbstractMultiGraph{T<:Integer}
graph::SimpleDiGraph
: The wrapped graph
WrappedMultiGraphs.MultiGraph
— Typestruct MultiGraph{T<:Integer} <: WrappedMultiGraphs.AbstractMultiGraph{T<:Integer}
graph::SimpleGraph
: The wrapped graph
WrappedMultiGraphs.SingleMultiEdge
— Typestruct SingleMultiEdge{T<:Integer} <: Graphs.SimpleGraphs.AbstractSimpleEdge{T<:Integer}
src::Integer
: The source nodedst::Integer
: The destination nodem::Integer
: The multiplicity of the edge
The m
-th instance of an edge connecting src
and dst
.