Parent Directory
|
Revision Log
Updated formatting/file headers for set.h, mem.h. Added #includes to top of set.h, mem.h to ensure ascConfig is not missed. Changed default IPOPT linear solver to MUMPS. Added simple C++ test file for CONOPT.
1 | jpye | 2039 | #include "simulation.h" |
2 | #include "library.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("conopttest.a4c"); | ||
13 | Type t = L.findType("conopttest"); | ||
14 | cerr << "Type = " << t.getName() << endl; | ||
15 | Simulation S = t.getSimulation("S"); | ||
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 |