Parent Directory | Revision Log
Merging in refactor of the C++ code, which is moved out of 'pygtk' and into 'ascxx'. Adding support for IPOPT 3.9.1, the current latest version. Support in dtar for parallel builds (possibly needs some testing still).
1 | #ifndef ASCXX_SOLVERREPORTER_H |
2 | #define ASCXX_SOLVERREPORTER_H |
3 | |
4 | #include "solverstatus.h" |
5 | |
6 | class SolverReporter{ |
7 | public: |
8 | SolverReporter(); |
9 | virtual ~SolverReporter(); |
10 | |
11 | virtual int report(SolverStatus *status); |
12 | virtual void finalise(SolverStatus *status); |
13 | }; |
14 | |
15 | #endif // ASCXX_SOLVERREPORTER_H |
john.pye@anu.edu.au | ViewVC Help |
Powered by ViewVC 1.1.22 |