Open
Graph Drawing
Framework

 v. 2023.09 (Elderberry)
 

Loading...
Searching...
No Matches
ogdf::DualGraphBase< isConst > Class Template Reference

A dual graph including its combinatorial embedding of an embedded graph. More...

#include <ogdf/basic/DualGraph.h>

+ Inheritance diagram for ogdf::DualGraphBase< isConst >:

Public Types

using Embedding = typename std::conditional< isConst, const ConstCombinatorialEmbedding, CombinatorialEmbedding >::type
 
- Public Types inherited from ogdf::ConstCombinatorialEmbedding
using face_iterator = internal::GraphIterator< face >
 The external face.
 
- Public Types inherited from ogdf::RegistryBase< Key, Registry, Iterator >
using iterator_type = Iterator
 
using key_type = Key
 
using registered_array_type = internal::RegisteredArrayBase< Registry >
 
using registration_iterator_type = typename registration_list_type::iterator
 
using registration_list_type = std::list< registered_array_type *, OGDFAllocator< registered_array_type * > >
 
using registry_type = Registry
 

Public Member Functions

 DualGraphBase (Embedding &CE)
 Constructor; creates dual graph and its combinatorial embedding.
 
 ~DualGraphBase ()
 Destructor.
 
EmbeddinggetPrimalEmbedding () const
 Returns a reference to the combinatorial embedding of the primal graph.
 
const GraphgetPrimalGraph () const
 Returns a reference to the primal graph.
 
Lookup functions
const nodeprimalNode (face f) const
 Returns the node in the primal graph corresponding to f.
 
const edgeprimalEdge (edge e) const
 Returns the edge in the primal graph corresponding to e.
 
const faceprimalFace (node v) const
 Returns the face in the embedding of the primal graph corresponding to v.
 
const nodedualNode (face f) const
 Returns the node in the dual graph corresponding to f.
 
const edgedualEdge (edge e) const
 Returns the edge in the dual graph corresponding to e.
 
const facedualFace (node v) const
 Returns the face in the embedding of the dual graph corresponding to v.
 
- Public Member Functions inherited from ogdf::CombinatorialEmbedding
 CombinatorialEmbedding (Graph &G)
 Creates a combinatorial embedding of graph G.
 
const GraphgetGraph () const
 Returns the associated graph.
 
GraphgetGraph ()
 
 operator const Graph & () const
 
 operator Graph & ()
 
void init (Graph &G)
 Initializes the embedding for graph G.
 
void clear ()
 Removes all nodes, edges, and faces from the graph and the embedding.
 
edge split (edge e)
 Splits edge e=(v,w) into e=(v,u) and e'=(u,w) creating a new node u.
 
void unsplit (edge eIn, edge eOut)
 Undoes a split operation.
 
node splitNode (adjEntry adjStartLeft, adjEntry adjStartRight)
 Splits a node while preserving the order of adjacency entries.
 
node contract (edge e, bool keepSelfLoops=false)
 Contracts edge e while preserving the order of adjacency entries.
 
edge splitFace (adjEntry adjSrc, adjEntry adjTgt, bool sourceAfter=false)
 Splits a face by inserting a new edge.
 
edge addEdgeToIsolatedNode (node v, adjEntry adjTgt)
 Inserts a new edge similarly to splitFace without having to call computeFaces again.
 
edge addEdgeToIsolatedNode (adjEntry adjSrc, node v)
 Inserts a new edge similarly to splitFace without having to call computeFaces again.
 
face joinFaces (edge e)
 Removes edge e and joins the two faces adjacent to e.
 
face joinFaces (adjEntry adj)
 Removes edge e corresponding to adj and joins the two faces adjacent to e.
 
void reverseEdge (edge e)
 Reverses edges e and updates embedding.
 
void moveBridge (adjEntry adjBridge, adjEntry adjBefore)
 Moves a bridge in the graph.
 
void removeDeg1 (node v)
 Removes degree-1 node v.
 
void updateMerger (edge e, face fRight, face fLeft)
 Update face information after inserting a merger in a copy graph.
 
- Public Member Functions inherited from ogdf::ConstCombinatorialEmbedding
 ConstCombinatorialEmbedding ()
 Creates a combinatorial embedding associated with no graph.
 
 ConstCombinatorialEmbedding (const ConstCombinatorialEmbedding &C)
 Copy constructor.
 
 ConstCombinatorialEmbedding (const Graph &G)
 Creates a combinatorial embedding of graph G.
 
virtual ~ConstCombinatorialEmbedding ()
 Destructor.
 
face_iterator begin () const
 
int calculateArraySize (int add) const
 
face chooseFace (std::function< bool(face)> includeFace=[](face) { return true;}, bool isFastTest=true) const
 Returns a random face.
 
void computeFaces ()
 Computes the list of faces.
 
void consistencyCheck () const
 Asserts that this embedding is consistent.
 
face_iterator end () const
 
face externalFace () const
 Returns the external face.
 
adjEntry findCommonFace (const node v, const node w, adjEntry &adjW, bool left=true) const
 Identifies a common face of two nodes and returns the respective adjacency entry.
 
adjEntry findCommonFace (const node v, const node w, bool left=true) const
 Identifies a common face of two nodes and returns the respective adjacency entry.
 
face firstFace () const
 Returns the first face in the list of all faces.
 
const GraphgetGraph () const
 Returns the associated graph of the combinatorial embedding.
 
void init ()
 
void init (const Graph &G)
 Initializes the embedding for graph G.
 
bool isBridge (edge e) const
 
bool isKeyAssociated (face key) const
 
face lastFace () const
 Returns the last face in the list of all faces.
 
face leftFace (adjEntry adj) const
 Returns the face to the left of adj, i.e., the face containing the twin of adj.
 
int maxFaceIndex () const
 Returns the largest used face index.
 
face maximalFace () const
 Returns a face of maximal size.
 
int maxKeyIndex () const
 
int numberOfFaces () const
 Returns the number of faces.
 
 operator const Graph & () const
 Returns associated graph.
 
ConstCombinatorialEmbeddingoperator= (const ConstCombinatorialEmbedding &C)
 Assignment operator.
 
face rightFace (adjEntry adj) const
 Returns the face to the right of adj, i.e., the face containing adj.
 
void setExternalFace (face f)
 Sets the external face to f.
 
bool valid () const
 Returns whether the embedding is associated with a graph.
 
- Public Member Functions inherited from ogdf::RegistryBase< Key, Registry, Iterator >
virtual ~RegistryBase () noexcept
 Destructor. Unregisters all associated arrays.
 
void copyArrayEntries (int toIndex, int fromIndex)
 Copies the entry from fromIndex to toIndex in all registered arrays.
 
int getArraySize () const
 Returns the current size of all registered arrays.
 
const registration_list_typegetRegisteredArrays () const
 Returns a reference to the list of all registered arrays.
 
bool isAutoShrink () const
 Returns whether the registry allows arrays to shrink when keys are removed.
 
void keyAdded (Key key)
 Records the addition of a new key and resizes all registered arrays if necessary.
 
void keyRemoved (Key key)
 Records the deletion of a key and resizes all registered arrays if auto shrink is enabled.
 
void keysCleared ()
 Records that all keys have been cleared. If auto shrink is enabled, all arrays are cleared and resized to 0.
 
void moveRegisterArray (registration_iterator_type it, registered_array_type *pArray) const
 Stores array pArray at position it in the list of registered arrays.
 
OGDF_NODISCARD registration_iterator_type registerArray (registered_array_type *pArray) const
 Registers a new array with this registry.
 
void reserveSpace (int new_keys)
 Resizes all arrays to make space of new_keys new keys.
 
void resizeArrays ()
 Resizes all arrays to the size requested by calculateArraySize(). Only shrinks the arrays if auto shrink is enabled.
 
void resizeArrays (int size)
 Resizes all arrays to size. Only shrinks the arrays if auto shrink is enabled.
 
void resizeArrays (int size, bool shrink)
 Resizes all arrays to size. If shrink is true, the arrays may also shrink.
 
void setAutoShrink (bool mAutoShrink)
 Specifies whether the registry allows arrays to shrink when keys are removed.
 
void swapArrayEntries (int index1, int index2)
 Swaps the entries at index1 and index2 in all registered arrays.
 
void unregisterArray (registration_iterator_type it) const noexcept
 Unregisters an array associated with this registry.
 
void unregisterArrays () noexcept
 Unregister all associated arrays.
 
- Public Member Functions inherited from ogdf::Observable< RegisteredObserver< Registry >, Registry >
 Observable ()=default
 
 Observable (const Observable &copy)=delete
 If you want to copy a subclass of Observable, call the default Observable() constructor.
 
 Observable (Observable &&move)=delete
 If you want to move a subclass of Observable, call the default Observable() constructor.
 
virtual ~Observable ()
 Note that all Observers must already be removed once the destructor of this base class is invoked (e.g.
 
Observableoperator= (const Observable &copy)=delete
 
Observableoperator= (Observable &&move)=delete
 

Updating the dual graph (also updates primal embedding)

Embeddingm_primalEmbedding
 The embedding of the primal graph.
 
FaceArray< nodem_primalNode
 The corresponding node in the primal graph.
 
NodeArray< facem_primalFace
 The corresponding facee in the embedding of the primal graph.
 
EdgeArray< edgem_primalEdge
 The corresponding edge in the primal graph.
 
FaceArray< nodem_dualNode
 The corresponding node in the dual graph.
 
NodeArray< facem_dualFace
 The corresponding face in embedding of the dual graph.
 
EdgeArray< edgem_dualEdge
 The corresponding edge in the dual graph.
 
template<bool isConstSFINAE = isConst, typename std::enable_if<!isConstSFINAE, int >::type = 0>
edge splitPrimal (edge e)
 Splits edge e=(v,w) into e=(v,u) and e'=(u,w) creating a new node u.
 
template<bool isConstSFINAE = isConst, typename std::enable_if<!isConstSFINAE, int >::type = 0>
void unsplitPrimal (edge eIn, edge eOut)
 Undoes a split operation.
 
template<bool isConstSFINAE = isConst, typename std::enable_if<!isConstSFINAE, int >::type = 0>
node splitNodePrimal (adjEntry adjStartLeft, adjEntry adjStartRight)
 Splits a node while preserving the order of adjacency entries.
 
template<bool isConstSFINAE = isConst, typename std::enable_if<!isConstSFINAE, int >::type = 0>
node contractPrimal (edge e, bool keepSelfLoops=false)
 Contracts edge e while preserving the order of adjacency entries.
 
template<bool isConstSFINAE = isConst, typename std::enable_if<!isConstSFINAE, int >::type = 0>
edge splitFacePrimal (adjEntry adjSrc, adjEntry adjTgt, bool sourceAfter=false)
 Splits a face by inserting a new edge.
 
template<bool isConstSFINAE = isConst, typename std::enable_if<!isConstSFINAE, int >::type = 0>
edge addEdgeToIsolatedNodePrimal (node v, adjEntry adjTgt)
 Inserts a new edge similarly to splitFace without having to call computeFaces again.
 
template<bool isConstSFINAE = isConst, typename std::enable_if<!isConstSFINAE, int >::type = 0>
edge addEdgeToIsolatedNodePrimal (adjEntry adjSrc, node v)
 Inserts a new edge similarly to splitFace without having to call computeFaces again.
 
template<bool isConstSFINAE = isConst, typename std::enable_if<!isConstSFINAE, int >::type = 0>
face joinFacesPrimal (edge e)
 Removes edge e and joins the two faces adjacent to e.
 
template<bool isConstSFINAE = isConst, typename std::enable_if<!isConstSFINAE, int >::type = 0>
void removeDeg1Primal (node v)
 Removes degree-1 node v.
 
template<bool isConstSFINAE = isConst, typename std::enable_if<!isConstSFINAE, int >::type = 0>
void reverseEdgePrimal (edge e)
 Reverses edges e and updates embedding.
 
void consistencyCheck () const
 Asserts that this embedding is consistent.
 
template<bool isConstSFINAE = isConst, typename std::enable_if<!isConstSFINAE, int >::type = 0>
edge addEdgeToIsolatedNodePrimal (adjEntry adj, node v, bool adjSrc)
 Inserts a new edge similarly to splitFace without having to call computeFaces again.
 
adjEntry dualAdj (adjEntry primalAdj, bool reverse=false)
 Returns the corresponding adjEntry of the dual edge of primalAdj (or the opposite adjEntry of the dual edge if reverse is set).
 

Additional Inherited Members

- Static Public Member Functions inherited from ogdf::ConstCombinatorialEmbedding
static int keyToIndex (face key)
 
- Public Attributes inherited from ogdf::ConstCombinatorialEmbedding
internal::GraphObjectContainer< FaceElementfaces
 The container containing all face objects.
 
- Protected Member Functions inherited from ogdf::ConstCombinatorialEmbedding
face createFaceElement (adjEntry adjFirst)
 Create a new face.
 
- Protected Member Functions inherited from ogdf::RegistryBase< Key, Registry, Iterator >
 RegistryBase ()=default
 
- Protected Member Functions inherited from ogdf::Observable< RegisteredObserver< Registry >, Registry >
void clearObservers ()
 
const ListPure< RegisteredObserver< Registry > * > & getObservers () const
 
ListPure< RegisteredObserver< Registry > * >::iterator registerObserver (RegisteredObserver< Registry > *obs) const
 Registers an observer.
 
void unregisterObserver (typename ListPure< RegisteredObserver< Registry > * >::iterator it) const
 Unregisters an observer.
 
- Protected Attributes inherited from ogdf::ConstCombinatorialEmbedding
const Graphm_cpGraph
 The associated graph.
 
face m_externalFace
 
int m_faceIdCount
 The index assigned to the next created face.
 
AdjEntryArray< facem_rightFace
 The face to which an adjacency entry belongs.
 

Detailed Description

template<bool isConst>
class ogdf::DualGraphBase< isConst >

A dual graph including its combinatorial embedding of an embedded graph.

Dual edges are rotated counter-clockwise compared to the primal ones.

Definition at line 61 of file DualGraph.h.

Member Typedef Documentation

◆ Embedding

template<bool isConst>
using ogdf::DualGraphBase< isConst >::Embedding = typename std::conditional<isConst, const ConstCombinatorialEmbedding, CombinatorialEmbedding>::type

Definition at line 63 of file DualGraph.h.

Constructor & Destructor Documentation

◆ DualGraphBase()

template<bool isConst>
ogdf::DualGraphBase< isConst >::DualGraphBase ( Embedding CE)
inlineexplicit

Constructor; creates dual graph and its combinatorial embedding.

Definition at line 67 of file DualGraph.h.

◆ ~DualGraphBase()

template<bool isConst>
ogdf::DualGraphBase< isConst >::~DualGraphBase ( )
inline

Destructor.

Definition at line 135 of file DualGraph.h.

Member Function Documentation

◆ addEdgeToIsolatedNodePrimal() [1/3]

template<bool isConst>
template<bool isConstSFINAE = isConst, typename std::enable_if<!isConstSFINAE, int >::type = 0>
edge ogdf::DualGraphBase< isConst >::addEdgeToIsolatedNodePrimal ( adjEntry  adj,
node  v,
bool  adjSrc 
)
inlineprivate

Inserts a new edge similarly to splitFace without having to call computeFaces again.

Parameters
adjThe adjacency entry belonging to the face that we want to insert the new edge into
vThe degree 0 node.
adjSrcwhether v will be the target node.
Returns
The new edge.

Definition at line 450 of file DualGraph.h.

◆ addEdgeToIsolatedNodePrimal() [2/3]

template<bool isConst>
template<bool isConstSFINAE = isConst, typename std::enable_if<!isConstSFINAE, int >::type = 0>
edge ogdf::DualGraphBase< isConst >::addEdgeToIsolatedNodePrimal ( adjEntry  adjSrc,
node  v 
)
inline

Inserts a new edge similarly to splitFace without having to call computeFaces again.

Creates a new edge from the node of adjSrc to the degree 0 node v. The face that adjSrc belongs to is split.

Returns
The new edge.

Definition at line 352 of file DualGraph.h.

◆ addEdgeToIsolatedNodePrimal() [3/3]

template<bool isConst>
template<bool isConstSFINAE = isConst, typename std::enable_if<!isConstSFINAE, int >::type = 0>
edge ogdf::DualGraphBase< isConst >::addEdgeToIsolatedNodePrimal ( node  v,
adjEntry  adjTgt 
)
inline

Inserts a new edge similarly to splitFace without having to call computeFaces again.

Creates a new edge from the degree 0 node v to the node of adjTgt. The face that adjTgt belongs to is split.

Returns
The new edge.

Definition at line 346 of file DualGraph.h.

◆ consistencyCheck()

template<bool isConst>
void ogdf::DualGraphBase< isConst >::consistencyCheck ( ) const
inline

Asserts that this embedding is consistent.

Definition at line 413 of file DualGraph.h.

◆ contractPrimal()

template<bool isConst>
template<bool isConstSFINAE = isConst, typename std::enable_if<!isConstSFINAE, int >::type = 0>
node ogdf::DualGraphBase< isConst >::contractPrimal ( edge  e,
bool  keepSelfLoops = false 
)
inline

Contracts edge e while preserving the order of adjacency entries.

Parameters
eis the edge to be contracted.
keepSelfLoopsdetermines whether edges parallel to e will result in self-loops or not (in the latter case, they will also be contracted).
Returns
The endpoint of e to which all edges have been moved. The implementation ensures this to be the source of the former edge e.

Definition at line 286 of file DualGraph.h.

◆ dualAdj()

template<bool isConst>
adjEntry ogdf::DualGraphBase< isConst >::dualAdj ( adjEntry  primalAdj,
bool  reverse = false 
)
inlineprivate

Returns the corresponding adjEntry of the dual edge of primalAdj (or the opposite adjEntry of the dual edge if reverse is set).

Definition at line 495 of file DualGraph.h.

◆ dualEdge()

template<bool isConst>
const edge & ogdf::DualGraphBase< isConst >::dualEdge ( edge  e) const
inline

Returns the edge in the dual graph corresponding to e.

Parameters
eis an edge in the primal graph
Returns
the corresponding edge in the dual graph

Definition at line 182 of file DualGraph.h.

◆ dualFace()

template<bool isConst>
const face & ogdf::DualGraphBase< isConst >::dualFace ( node  v) const
inline

Returns the face in the embedding of the dual graph corresponding to v.

Parameters
vis a node in the primal graph
Returns
the corresponding face in the embedding of the dual graph

Definition at line 189 of file DualGraph.h.

◆ dualNode()

template<bool isConst>
const node & ogdf::DualGraphBase< isConst >::dualNode ( face  f) const
inline

Returns the node in the dual graph corresponding to f.

Parameters
fis a face in the embedding of the primal graph
Returns
the corresponding node in the dual graph

Definition at line 175 of file DualGraph.h.

◆ getPrimalEmbedding()

template<bool isConst>
Embedding & ogdf::DualGraphBase< isConst >::getPrimalEmbedding ( ) const
inline

Returns a reference to the combinatorial embedding of the primal graph.

Definition at line 141 of file DualGraph.h.

◆ getPrimalGraph()

template<bool isConst>
const Graph & ogdf::DualGraphBase< isConst >::getPrimalGraph ( ) const
inline

Returns a reference to the primal graph.

Definition at line 144 of file DualGraph.h.

◆ joinFacesPrimal()

template<bool isConst>
template<bool isConstSFINAE = isConst, typename std::enable_if<!isConstSFINAE, int >::type = 0>
face ogdf::DualGraphBase< isConst >::joinFacesPrimal ( edge  e)
inline

Removes edge e and joins the two faces adjacent to e.

Parameters
eis an edge in the associated graph.
Returns
the resulting (joined) face, which will be based on the larger one of the two faces separated by e

Definition at line 358 of file DualGraph.h.

◆ primalEdge()

template<bool isConst>
const edge & ogdf::DualGraphBase< isConst >::primalEdge ( edge  e) const
inline

Returns the edge in the primal graph corresponding to e.

Parameters
eis an edge in the dual graph
Returns
the corresponding edge in the primal graph

Definition at line 161 of file DualGraph.h.

◆ primalFace()

template<bool isConst>
const face & ogdf::DualGraphBase< isConst >::primalFace ( node  v) const
inline

Returns the face in the embedding of the primal graph corresponding to v.

Parameters
vis a node in the dual graph
Returns
the corresponding face in the embedding of the primal graph

Definition at line 168 of file DualGraph.h.

◆ primalNode()

template<bool isConst>
const node & ogdf::DualGraphBase< isConst >::primalNode ( face  f) const
inline

Returns the node in the primal graph corresponding to f.

Parameters
fis a face in the embedding of the dual graph
Returns
the corresponding node in the primal graph

Definition at line 154 of file DualGraph.h.

◆ removeDeg1Primal()

template<bool isConst>
template<bool isConstSFINAE = isConst, typename std::enable_if<!isConstSFINAE, int >::type = 0>
void ogdf::DualGraphBase< isConst >::removeDeg1Primal ( node  v)
inline

Removes degree-1 node v.

Definition at line 377 of file DualGraph.h.

◆ reverseEdgePrimal()

template<bool isConst>
template<bool isConstSFINAE = isConst, typename std::enable_if<!isConstSFINAE, int >::type = 0>
void ogdf::DualGraphBase< isConst >::reverseEdgePrimal ( edge  e)
inline

Reverses edges e and updates embedding.

Definition at line 402 of file DualGraph.h.

◆ splitFacePrimal()

template<bool isConst>
template<bool isConstSFINAE = isConst, typename std::enable_if<!isConstSFINAE, int >::type = 0>
edge ogdf::DualGraphBase< isConst >::splitFacePrimal ( adjEntry  adjSrc,
adjEntry  adjTgt,
bool  sourceAfter = false 
)
inline

Splits a face by inserting a new edge.

Creates a new edge from the node of adjSrc to the one of adjTgt. Note that this can also be achieved by inserting an edge in the underlying graph directly and calling computeFaces again. In contrast, this operation achieves constant running time.

Precondition
adjSrc and adjTgt belong to the same face.
Parameters
adjSrcThe adjEntry after which the source adjEntry of the new edge should be inserted.
adjTgtThe adjEntry after which the target adjEntry of the new edge should be inserted.
sourceAfterOnly has an effect if adjSrc == adjTgt. Marks whether the source of the introduced self-loop comes after its target in the adjacency list.
Returns
The new edge.

Definition at line 308 of file DualGraph.h.

◆ splitNodePrimal()

template<bool isConst>
template<bool isConstSFINAE = isConst, typename std::enable_if<!isConstSFINAE, int >::type = 0>
node ogdf::DualGraphBase< isConst >::splitNodePrimal ( adjEntry  adjStartLeft,
adjEntry  adjStartRight 
)
inline

Splits a node while preserving the order of adjacency entries.

This method splits a node v into two nodes vl and vr. Node vl receives all adjacent edges of v from adjStartLeft until the edge preceding adjStartRight, and vr the remaining nodes (thus adjStartRight is the first edge that goes to vr). The order of adjacency entries is preserved. Additionally, a new edge (vl,vr) is created, such that this edge is inserted before adjStartLeft and adjStartRight in the the adjacency lists of vl and vr.

Node v is modified to become node vl, and node vr is returned.

Parameters
adjStartLeftis the first entry that goes to the left node.
adjStartRightis the first entry that goes to the right node.
Returns
the newly created node.

Definition at line 251 of file DualGraph.h.

◆ splitPrimal()

template<bool isConst>
template<bool isConstSFINAE = isConst, typename std::enable_if<!isConstSFINAE, int >::type = 0>
edge ogdf::DualGraphBase< isConst >::splitPrimal ( edge  e)
inline

Splits edge e=(v,w) into e=(v,u) and e'=(u,w) creating a new node u.

Parameters
eis the edge to be split; e is modified by the split.
Returns
the edge e'.

Definition at line 197 of file DualGraph.h.

◆ unsplitPrimal()

template<bool isConst>
template<bool isConstSFINAE = isConst, typename std::enable_if<!isConstSFINAE, int >::type = 0>
void ogdf::DualGraphBase< isConst >::unsplitPrimal ( edge  eIn,
edge  eOut 
)
inline

Undoes a split operation.

Parameters
eInis the edge (v,u).
eOutis the edge (u,w).

Definition at line 233 of file DualGraph.h.

Member Data Documentation

◆ m_dualEdge

template<bool isConst>
EdgeArray<edge> ogdf::DualGraphBase< isConst >::m_dualEdge
protected

The corresponding edge in the dual graph.

Definition at line 445 of file DualGraph.h.

◆ m_dualFace

template<bool isConst>
NodeArray<face> ogdf::DualGraphBase< isConst >::m_dualFace
protected

The corresponding face in embedding of the dual graph.

Definition at line 444 of file DualGraph.h.

◆ m_dualNode

template<bool isConst>
FaceArray<node> ogdf::DualGraphBase< isConst >::m_dualNode
protected

The corresponding node in the dual graph.

Definition at line 443 of file DualGraph.h.

◆ m_primalEdge

template<bool isConst>
EdgeArray<edge> ogdf::DualGraphBase< isConst >::m_primalEdge
protected

The corresponding edge in the primal graph.

Definition at line 442 of file DualGraph.h.

◆ m_primalEmbedding

template<bool isConst>
Embedding& ogdf::DualGraphBase< isConst >::m_primalEmbedding
protected

The embedding of the primal graph.

Definition at line 439 of file DualGraph.h.

◆ m_primalFace

template<bool isConst>
NodeArray<face> ogdf::DualGraphBase< isConst >::m_primalFace
protected

The corresponding facee in the embedding of the primal graph.

Definition at line 441 of file DualGraph.h.

◆ m_primalNode

template<bool isConst>
FaceArray<node> ogdf::DualGraphBase< isConst >::m_primalNode
protected

The corresponding node in the primal graph.

Definition at line 440 of file DualGraph.h.


The documentation for this class was generated from the following file: