|
Open Graph Drawing Framework |
v. 2023.09 (Elderberry)
|
|
|
Go to the documentation of this file.
74 node vOrig = m_vOrig[v];
75 return (vOrig !=
nullptr) ? vOrig : m_vRep[v];
100 node vCopy = m_vCopy[vOrig];
101 if (vCopy ==
nullptr) {
103 m_vOrig[m_vCopy[vOrig] = vCopy] = vOrig;
The namespace for all OGDF objects.
Includes declaration of graph class.
node original(node v) const
Singly linked lists (maintaining the length of the list).
Array< SListPure< edge > > m_component
const SList< int > & adjacentComponents(node v) const
node representative(node v) const
NodeArray< node > m_vOrig
NodeArray< node > m_vCopy
EdgeArray< edge > m_eOrig
EdgeArray< int > m_compNum
Declaration of singly linked lists and iterators.
The parameterized class Array implements dynamic arrays of type E.
RegisteredArray for nodes, edges and adjEntries of a graph.
const SListPure< edge > & component(int i) const
int componentNumber(edge e) const
Data type for general directed graphs (adjacency list representation).
edge original(edge e) const
void setOriginal(node vCopy, node vOriginal)
Basic declarations, included by all source files.
#define OGDF_EXPORT
Specifies that a function or class is exported by the OGDF DLL.
Declaration and implementation of Array class and Array algorithms.
Class for the representation of edges.
void setComponentNumber(edge e, int i)
Represents expansion graph of each biconnected component of a given digraph, i.e.,...
Class for the representation of nodes.
NodeArray< SList< int > > m_adjComponents
RegisteredArray for edges of a graph, specialized for EdgeArray<edge>.