// ===================================
// 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)
{
OptFrame<Rep$project $commamproject> optframe;
//optframe.loadCallModule();
optframe.loadModule(new $projectProblemModule);
optframe.execute();
cout << "Program ended successfully" << endl;
return 0;
}