Parent Directory | Revision Log
Testing CONOPT on 64-bit Fed 16.
1 | #include "library.h" |
2 | #include "simulation.h" |
3 | #include "solver.h" |
4 | #include "solverreporter.h" |
5 | |
6 | #include <iostream> |
7 | using namespace std; |
8 | |
9 | int main(void){ |
10 | |
11 | Library L; |
12 | L.load("test/conopt/conopttest.a4c"); |
13 | Type t = L.findType("conopttest"); |
14 | cerr << "Type = " << t.getName() << endl; |
15 | Simulation S = t.getSimulation("S",1); |
16 | |
17 | S.build(); |
18 | |
19 | cerr << "About to solve..." << endl; |
20 | |
21 | SolverReporter R; |
22 | S.solve(Solver("CONOPT"),R); |
23 | } |
john.pye@anu.edu.au | ViewVC Help |
Powered by ViewVC 1.1.22 |