54 virtual std::vector<OptimizationVariable>
get_variables() = 0;
void set_single_objective(bool singleObjective)
Function for setting the _singleObjective flag.
Definition: MAiNGOmodelEpsCon.h:93
This class is the base class for implementing bi-objective problems.
Definition: MAiNGOmodelEpsCon.h:36
bool _singleObjective
Definition: MAiNGOmodelEpsCon.h:101
EvaluationContainer evaluate(const std::vector< Var > &optVars) final
Virtual function which has to be implemented by the user in order to enable evaluation of the model.
Definition: MAiNGOmodelEpsCon.cpp:33
virtual std::vector< double > get_initial_point()
Virtual function which has to be implemented by the user in order to enable getting data on the initi...
Definition: MAiNGOmodelEpsCon.h:66
Struct for storing the values returned by model evaluation at the given point "var".
Definition: evaluationContainer.h:192
virtual EvaluationContainer evaluate_user_model(const std::vector< Var > &optVars)=0
Virtual function which has to be implemented by the user in order to enable evaluation of the model.
This class is the base class for models to be solved by MAiNGO.
Definition: MAiNGOmodel.h:91
void set_epsilon(const std::vector< double > &epsilon)
Function for changing the epsilon-parameters.
Definition: MAiNGOmodelEpsCon.h:73
size_t _objectiveIndex
Definition: MAiNGOmodelEpsCon.h:100
namespace holding all essentials of MAiNGO
Definition: aleModel.h:31
virtual ~MAiNGOmodelEpsCon()
Destructor.
Definition: MAiNGOmodelEpsCon.h:42
virtual std::vector< OptimizationVariable > get_variables()=0
Virtual function which has to be implemented by the user in order to enable getting data on optimizat...
std::vector< double > _epsilon
Definition: MAiNGOmodelEpsCon.h:99
void set_objective_index(const size_t objectiveIndex)
Function for setting the objective index.
Definition: MAiNGOmodelEpsCon.h:83