Open
Graph Drawing
Framework

 v. 2023.09 (Elderberry)
 

CliqueFinderSPQR.h
Go to the documentation of this file.
1 
32 #pragma once
33 
35 
36 namespace ogdf {
37 
39 
50 public:
56  explicit CliqueFinderSPQR(CliqueFinderModule& cliqueFinder)
57  : CliqueFinderModule(), m_cliqueFinder(cliqueFinder) { }
58 
59 protected:
61  void doCall() override;
62 
63 private:
65 };
66 
67 }
ogdf
The namespace for all OGDF objects.
Definition: AugmentationModule.h:36
ogdf::CliqueFinderSPQR::CliqueFinderSPQR
CliqueFinderSPQR(CliqueFinderModule &cliqueFinder)
Creates a new CliqueFinderSPQR.
Definition: CliqueFinderSPQR.h:56
ogdf::CliqueFinderSPQR
Finds cliques using SPQR trees.
Definition: CliqueFinderSPQR.h:49
CliqueFinderModule.h
Declares ogdf::CliqueFinderModule class.
ogdf::CliqueFinderModule
Finds cliques.
Definition: CliqueFinderModule.h:46
OGDF_EXPORT
#define OGDF_EXPORT
Specifies that a function or class is exported by the OGDF DLL.
Definition: config.h:101
ogdf::CliqueFinderSPQR::m_cliqueFinder
CliqueFinderModule & m_cliqueFinder
The clique finder to use on R-nodes.
Definition: CliqueFinderSPQR.h:64