Open
Graph Drawing
Framework

 v. 2023.09 (Elderberry)
 

lpmaster.h
Go to the documentation of this file.
1 
33 #pragma once
34 
36 
37 namespace abacus {
38 
39 class Master;
40 
41 
43 
48 public:
49  LpMaster(Master *master) : master_(master) { }
50 
51  virtual ~LpMaster() { }
52 
53  virtual void initializeLpParameters() = 0;
54  virtual void setDefaultLpParameters() = 0;
55  virtual void printLpParameters() const = 0;
56  virtual void outputLpStatistics() const = 0;
57 
58 protected:
60 };
61 
62 }
abacusroot.h
abacus::LpMaster
The LP master.
Definition: lpmaster.h:47
abacus
Definition: abacusroot.h:48
abacus::LpMaster::LpMaster
LpMaster(Master *master)
Definition: lpmaster.h:49
abacus::AbacusRoot
Base class of all other classes of ABACUS.
Definition: abacusroot.h:68
abacus::LpMaster::master_
Master * master_
Definition: lpmaster.h:59
abacus::LpMaster::~LpMaster
virtual ~LpMaster()
Definition: lpmaster.h:51
OGDF_EXPORT
#define OGDF_EXPORT
Specifies that a function or class is exported by the OGDF DLL.
Definition: config.h:101
abacus::Master
The master of the optimization.
Definition: master.h:69