Artifact 2a39ed71ca45161090791a5d6a92fb4d51370b07a1ccf4955c5fcdb6b2a6c651:
- File mtt/lib/cc/mtt_Solver.hh — part of check-in [af3953deae] at 2021-03-01 11:39:42 on branch master — Cleanup repository after cvs2git conversion. (user: jeff@gridfinity.com, size: 620) [annotate] [blame] [check-ins using] [more...]
- File mttroot/mtt/lib/cc/mtt_Solver.hh — part of check-in [b94fab9d42] at 2001-08-08 02:15:00 on branch origin/master — Rationalisation of solver code, beginning with algebraic solvers. (user: geraint@users.sourceforge.net, size: 620) [annotate] [blame] [check-ins using]
#ifndef MTT_SOLVER #define MTT_SOLVER #include <cmath> #include <cstdlib> #include <iostream> #include <octave/oct.h> namespace MTT { class Solver { public: Solver (const int npar, const int nu, const int nx, const int ny, const int nyz); virtual ~Solver (void) {}; protected: ColumnVector _x; ColumnVector _uui; double _t; ColumnVector _par; ColumnVector _ui; ColumnVector _yz; int _nu; int _np; int _nx; int _ny; int _nyz; }; } #endif // MTT_SOLVER