Parent Directory
|
Revision Log
Added menu bar at top of PyGTK interface. 'Preferences' menu currently just outputs the number of solver parameters in use. Plan is to allow the parameters to be viewed and edited via the GUI.
1 | #ifndef ASCXX_SOLVERPARAMETERS_H |
2 | #define ASCXX_SOLVERPARAMETERS_H |
3 | |
4 | #include <stdio.h> |
5 | #include <utilities/ascConfig.h> |
6 | #include <solver/slv_types.h> |
7 | #include <solver/rel.h> |
8 | #include <solver/logrel.h> |
9 | #include <solver/mtx.h> |
10 | #include <general/list.h> |
11 | #include <solver/slv_common.h> |
12 | |
13 | #include "solver.h" |
14 | |
15 | #include <string> |
16 | |
17 | class SolverParameters{ |
18 | private: |
19 | slv_parameters_t p; |
20 | |
21 | protected: |
22 | friend class Simulation; |
23 | explicit SolverParameters(const slv_parameters_t &); |
24 | |
25 | public: |
26 | SolverParameters(); |
27 | SolverParameters(const SolverParameters &); |
28 | const std::string toString() const; |
29 | }; |
30 | |
31 | #endif |
john.pye@anu.edu.au | ViewVC Help |
Powered by ViewVC 1.1.22 |