Open
Graph Drawing
Framework

 v. 2023.09 (Elderberry)
 

Loading...
Searching...
No Matches
lpmasterosi.h
Go to the documentation of this file.
1
30#pragma once
31
33
34namespace abacus {
35
36
38
44 friend class OsiIF;
45public:
46
48
51 LpMasterOsi(Master *master) : LpMaster(master) { }
52
54 virtual ~LpMasterOsi();
55
57 virtual void initializeLpParameters() override;
58
60 virtual void setDefaultLpParameters() override { }
61
63 virtual void printLpParameters() const override { }
64
66 virtual void outputLpStatistics() const override { }
67};
68
69}
The LP master.
Definition lpmaster.h:47
The OSI LP master.
Definition lpmasterosi.h:43
virtual void outputLpStatistics() const override
Prints LP solver specific Statistics.
Definition lpmasterosi.h:66
virtual ~LpMasterOsi()
The destructor.
virtual void initializeLpParameters() override
Initializes the LP solver specific Parameters.
virtual void printLpParameters() const override
Prints the settings of the LP solver specific Parameters.
Definition lpmasterosi.h:63
LpMasterOsi(Master *master)
The constructor.
Definition lpmasterosi.h:51
virtual void setDefaultLpParameters() override
Sets default values of the LP solver specific Parameters.
Definition lpmasterosi.h:60
The master of the optimization.
Definition master.h:69
#define OGDF_EXPORT
Specifies that a function or class is exported by the OGDF DLL.
Definition config.h:101
the lp master.