[go: up one dir, main page]

Menu

[49ee99]: / mct / main.tpl  Maximize  Restore  History

Download this file

32 lines (20 with data), 618 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
// ===================================
// Main.cpp file generated by OptFrame
// Project $name
// ===================================
#include <stdlib.h>
#include <math.h>
#include <iostream>
#include "./OptFrame/OptFrame.hpp"
#include "./$project.h"
using namespace std;
int main(int argc, char **argv)
{
srand(time(NULL));
Scanner scanner(new File("README"));
$projectProblemInstance& p = * new $projectProblemInstance(scanner);
$projectInitialSolution$initialsolution is(p);
Solution$project& s = is.generateSolution();
cout << "Program ended successfully" << endl;
return 0;
}