Open
Graph Drawing
Framework

 v. 2023.09 (Elderberry)
 

VariableEmbeddingInserterDyn.h
Go to the documentation of this file.
1 
32 #pragma once
33 
34 #include <ogdf/basic/Array.h>
35 #include <ogdf/basic/Graph.h>
36 #include <ogdf/basic/basic.h>
38 
39 #include <cstdint>
40 
41 namespace ogdf {
42 class EdgeInsertionModule;
43 class PlanRepLight;
44 
46 
60 public:
62 
64  virtual EdgeInsertionModule* clone() const override;
65 
66 private:
68  virtual ReturnType doCall(PlanRepLight& pr, const Array<edge>& origEdges,
69  const EdgeArray<int>* pCostOrig, const EdgeArray<bool>* pForbiddenOrig,
70  const EdgeArray<uint32_t>* pEdgeSubgraphs) override;
71 };
72 
73 }
ogdf
The namespace for all OGDF objects.
Definition: multilevelmixer.cpp:39
Graph.h
Includes declaration of graph class.
ogdf::PlanRepLight
Light-weight version of a planarized representation, associated with a PlanRep.
Definition: PlanRepLight.h:45
ogdf::VariableEmbeddingInserterBase::VariableEmbeddingInserterBase
VariableEmbeddingInserterBase()
Creates an instance of variable embedding edge inserter with default settings.
Definition: VariableEmbeddingInserterBase.h:44
ogdf::EdgeInsertionModule
Interface for edge insertion algorithms.
Definition: EdgeInsertionModule.h:50
ogdf::Array
The parameterized class Array implements dynamic arrays of type E.
Definition: Array.h:219
VariableEmbeddingInserterBase.h
Declaration of class VariablEmbeddingInserterBase.
ogdf::VariableEmbeddingInserterDyn
Optimal edge insertion module.
Definition: VariableEmbeddingInserterDyn.h:59
basic.h
Basic declarations, included by all source files.
OGDF_EXPORT
#define OGDF_EXPORT
Specifies that a function or class is exported by the OGDF DLL.
Definition: config.h:101
Array.h
Declaration and implementation of Array class and Array algorithms.
ogdf::Module::ReturnType
ReturnType
The return type of a module.
Definition: Module.h:52
ogdf::VariableEmbeddingInserterBase
Common parameter functionality for ogdf::VariableEmbeddingInserter and ogdf::VariableEmbeddingInserte...
Definition: VariableEmbeddingInserterBase.h:41
ogdf::internal::EdgeArrayBase2
RegisteredArray for edges of a graph, specialized for EdgeArray<edge>.
Definition: Graph_d.h:716