Overview
Comment: | Initial guess set to one. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/numerical-algebraic-solution | trunk |
Files: | files | file ages | folders |
SHA3-256: |
498c1e0b780cff08af4dcc0dfbfeb258 |
User & Date: | geraint@users.sourceforge.net on 2001-06-26 01:06:59 |
Other Links: | branch diff | manifest | tags |
Context
2001-06-26
| ||
22:29:05 |
mtt_xargs.sh eliminates Arg list too long error for large models. (UNIX xargs does not work if the environment is too large). check-in: 6ec7d47592 user: geraint@users.sourceforge.net tags: origin/numerical-algebraic-solution, trunk | |
01:06:59 | Initial guess set to one. check-in: 498c1e0b78 user: geraint@users.sourceforge.net tags: origin/numerical-algebraic-solution, trunk | |
01:01:28 | Makes input and state names available for input rep. check-in: 5d1ea091d1 user: geraint@users.sourceforge.net tags: origin/numerical-algebraic-solution, trunk | |
Changes
Modified mttroot/mtt/lib/cc/mtt_Solver.cc from [d33ce07dea] to [3335bb6d91].
︙ | ︙ | |||
24 25 26 27 28 29 30 | const double &t, const ColumnVector &par) { _x = x; _uui.insert(u,0); _t = t; _par = par; | | | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | const double &t, const ColumnVector &par) { _x = x; _uui.insert(u,0); _t = t; _par = par; _ui = ColumnVector(_nyz,1.0); Solve (); _uui.insert(_ui,_nu); return _uui; } ColumnVector Solver::eval (const ColumnVector &ui) |
︙ | ︙ |