[go: up one dir, main page]

Menu

[52b7f0]: / mct / Constructive.tpl  Maximize  Restore  History

Download this file

45 lines (27 with data), 779 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
40
41
42
43
44
#ifndef $project_CONSTRUCTIVE_$constructive_H_
#define $project_CONSTRUCTIVE_$constructive_H_
#include "../../OptFrame/Constructive.h"
#include "../../OptFrame/Util/TestSolution.hpp"
#include "ProblemInstance.h"
#include "Representation.h"
#include "Solution.h"
#include "Evaluator.h"
#include <list>
#include <algorithm>
#include <stdlib.h>
using namespace std;
using namespace optframe;
namespace $project
{
class Constructive$constructive: public Constructive<Rep$project, MY_ADS>
{
private:
ProblemInstance& p$project;
// Your private vars
public:
Constructive$constructive(ProblemInstance& _p$project);
virtual ~Constructive$constructive();
Solution<Rep$project, MY_ADS>& generateSolution();
};
}
#endif /*$project_CONTRUCTIVE_$constructive_H_*/