Open
Graph Drawing
Framework

 v. 2023.09 (Elderberry)
 

Loading...
Searching...
No Matches
CliqueFinderSPQR.h
Go to the documentation of this file.
1
32#pragma once
33
34#include <ogdf/basic/basic.h>
36
37namespace ogdf {
38
40
51public:
57 explicit CliqueFinderSPQR(CliqueFinderModule& cliqueFinder)
58 : CliqueFinderModule(), m_cliqueFinder(cliqueFinder) { }
59
60protected:
62 void doCall() override;
63
64private:
66};
67
68}
Declares ogdf::CliqueFinderModule class.
Basic declarations, included by all source files.
Finds cliques using SPQR trees.
CliqueFinderModule & m_cliqueFinder
The clique finder to use on R-nodes.
CliqueFinderSPQR(CliqueFinderModule &cliqueFinder)
Creates a new CliqueFinderSPQR.
void doCall() override
Find cliques in m_pCopy.
#define OGDF_EXPORT
Specifies that a function or class is exported by the OGDF dynamic library (shared object / DLL),...
Definition config.h:117
The namespace for all OGDF objects.