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 | #include "value.h" |
2 | |
3 | #include <ascend/compiler/value_type.h> |
4 | |
5 | /* wow, this is a stoopid class, eh! but see solverparameter.h for its use */ |
6 | |
7 | Value::Value(){ |
8 | v = NULL; |
9 | } |
10 | |
11 | Value::Value(const value_t *v){ |
12 | this->v = v; |
13 | } |
14 | |
15 | Value::~Value(){ |
16 | // nothing to do |
17 | } |
18 |
john.pye@anu.edu.au | ViewVC Help |
Powered by ViewVC 1.1.22 |