Loading...
Searching...
No Matches
optimizer.h
Go to the documentation of this file.
1
25#ifndef OPTIMIZER_H
26#define OPTIMIZER_H
27
28#include "gams.h"
29
30#include <string>
31
34class Optimizer
35{
36public:
38 Optimizer(int argc, char *argv[]);
39
41 double solve(double mult);
42
43private:
45 std::string getModelText();
46
47private:
48
50};
51
52#endif // OPTIMIZER_H