[go: up one dir, main page]

Menu

[5e16fc]: / mct / Evaluator.tpl  Maximize  Restore  History

Download this file

41 lines (25 with data), 677 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#ifndef $project_EVALUATOR_H_
#define $project_EVALUATOR_H_
//#include <cmath>
#include <stdlib.h>
#include <math.h>
#include "../../OptFrame/Evaluation.hpp"
#include "../../OptFrame/Evaluator.hpp"
#include "Representation.h"
#include "ProblemInstance.h"
namespace $project
{
class MyEvaluator: public Evaluator<Rep$project, MY_ADS >
{
private:
ProblemInstance& p$project;
// Your private vars
public:
MyEvaluator(ProblemInstance& _p$project);
virtual ~MyEvaluator();
Evaluation& evaluate(const Rep$project& rep);
//Evaluation& evaluate(const Rep$project& rep, const MY_ADS&);
virtual bool isMinimization() const;
};
}
#endif /*$project_EVALUATOR_H_*/