|
|
delpi
0.0.1
DElta-complete LP solver
|
Simple dataclass used to store the configuration of the program. More...
#include <Config.h>
Public Types | |
| enum class | LpSolver { SOPLEX , QSOPTEX , DELPI } |
| Underlying LP solver used by the theory solver. More... | |
| enum class | Format { AUTO , MPS , LP } |
| Format of the input file. More... | |
| enum class | LpMode { AUTO = 0 , PURE_PRECISION_BOOSTING = 1 , PURE_ITERATIVE_REFINEMENT = 2 , HYBRID = 3 } |
| LP mode used by the LP solver. More... | |
Public Member Functions | |
| Config (std::string filename) | |
| Construct a new Config object with the given filename. | |
| Config (bool read_from_stdin) | |
| Construct a new Config object that will read the input from the standard input. | |
| Config (Format format) | |
| Construct a new Config object and immediately set the format. | |
Simple dataclass used to store the configuration of the program.
It is usually generated by the ArgParser using the command line arguments.
|
strong |
|
strong |
|
strong |
|
explicit |
Construct a new Config object with the given filename.
| filename | name of the input file |
Definition at line 16 of file Config.cpp.
|
explicit |
Construct a new Config object that will read the input from the standard input.
| read_from_stdin | whether to read the input from the standard input |
Definition at line 17 of file Config.cpp.
|
explicit |
Construct a new Config object and immediately set the format.
| format | whether to read the input from the standard input |
Definition at line 18 of file Config.cpp.