Loading...
Searching...
No Matches
solveroptions.h
1
26#ifndef SOLVEROPTIONS_H
27#define SOLVEROPTIONS_H
28#include <string>
29
30namespace gams{
31
34{
35public:
38
41
44 std::string getSolverName();
45
47 // \param fileName GAMSOptions file name.
48 void exportOptFile(/*std::string fileName*/);
49
52
53private:
54 std::string SolverName = "";
55
56};
57} // namespace gams
58
59#endif // GAMSWORKSPACE_H
60
Represents the solver options.
Definition: solveroptions.h:34
void exportOptFile()
Export GAMSOptions file.
void ResetToDefaults()
Reset all GAMS options to default.
~SolverOptions()
Destructor.
SolverOptions()
Standard constructor.
std::string getSolverName()
Definition: gams.h:91