Functions | |
void | abstractMixedGraph::InitDegrees () throw () |
void | abstractMixedGraph::InitDegInOut () throw () |
TFloat | abstractMixedGraph::Deg (TNode v) throw (ERRange) |
TFloat | abstractMixedGraph::DegIn (TNode v) throw (ERRange) |
TFloat | abstractMixedGraph::DegOut (TNode v) throw (ERRange) |
TFloat | abstractMixedGraph::Divergence (TNode v) throw (ERRange) |
void | abstractMixedGraph::ReleaseDegrees () throw () |
void | abstractMixedGraph::AdjustDegrees (TArc a, TFloat lambda) throw (ERRange) |
|
Update the degree labels when a subgraph multiplicity changes.
|
|
Retrieve a subgraph node degree.
|
|
Retrieve a subgraph node in-degree.
|
|
Retrieve a subgraph node out-degree.
|
|
Retrieve a subgraph node imbalance.
|
|
Initialize the directed degree labels. For every node, this sums up the subgraph (!) multiplicities of all incident directed arcs. Undirected edges are not counted. The results are available by the methods DegIn() and DegOut() where DegIn() [DegOut()] counts the arcs which are blocking in the leaving [entering] direction. |
|
Initialize the undirected degree labels. For every node, this sums up the subgraph (!) multiplicities of all incident undirected edges. Directed arcs are not counted. The results are available by the method Deg(). |
|
Deallocate all node degree labels (directed and undirected).
|