Overview
Comment: | Dummy class for use when -ae is not specified as an option. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
aa6be937eaf794bd79a96c048707d1cf |
User & Date: | geraint@users.sourceforge.net on 2004-08-28 23:50:59 |
Other Links: | branch diff | manifest | tags |
Context
2004-08-29
| ||
00:19:49 | Defaults to noAlgebraicSolver. check-in: 908f7b9c4d user: geraint@users.sourceforge.net tags: origin/master, trunk | |
2004-08-28
| ||
23:50:59 | Dummy class for use when -ae is not specified as an option. check-in: aa6be937ea user: geraint@users.sourceforge.net tags: origin/master, trunk | |
23:48:06 |
Removed dependency of ae.r on cse.r if -ae is not specified as an option. This prevents an implicit -A and thus removes a dependency on cse (and hence Reduce) for sorted systems. check-in: f6a3278c73 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/lib/cc/mtt_noAlgebraicSolver.cc version [7c4f7ecef3].
> > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #include "mtt_noAlgebraicSolver.hh" void MTT::noAlgebraicSolver::Solve (void) { ; } ColumnVector MTT::noAlgebraicSolver::solve (const ColumnVector &x, const ColumnVector &u, const double &t, const ColumnVector &par) { return u; } |
Added mttroot/mtt/lib/cc/mtt_noAlgebraicSolver.hh version [1076338af6].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | #ifndef MTT_REDUCESOLVER #define MTT_REDUCESOLVER #include "mtt_AlgebraicSolver.hh" namespace MTT { class noAlgebraicSolver : public MTT::AlgebraicSolver { // Dummy class public: noAlgebraicSolver (const int npar, const int nu, const int nx, const int ny, const int nyz) : AlgebraicSolver (npar,nu,nx,ny,nyz) {;} void Solve (void); ColumnVector solve (const ColumnVector &x, const ColumnVector &u, const double &t, const ColumnVector &par); ~noAlgebraicSolver (void) {}; }; } #endif // MTT_REDUCESOLVER |