[go: up one dir, main page]

Menu

[925ebb]: / Examples / mainPN.cpp  Maximize  Restore  History

Download this file

32 lines (22 with data), 620 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 Particao
// ===================================
#include <stdlib.h>
#include <math.h>
#include <iostream>
#include "../OptFrame/Interactive.hpp"
#include "PN.h"
using namespace std;
using namespace optframe;
using namespace PN;
int main(int argc, char **argv)
{
Interactive<RepPN, MY_ADS > optframe;
//optframe.loadCallCommand();
optframe.loadCommand(new PNProblemCommand);
optframe.execute("system.read ./execPN.opt");
optframe.execute();
cout << "Program ended successfully" << endl;
return 0;
}