Overview
Comment: | Replaced ios:: with std::ios:: for g++-3.0 compatability. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
2720268445e96497d3c67cde690e2c42 |
User & Date: | geraint@users.sourceforge.net on 2002-04-09 12:04:25 |
Other Links: | branch diff | manifest | tags |
Context
2002-04-15
| ||
10:54:31 |
Statically declare outputs and initialise to zero. This is necessary to prevent spurious values from being output when no assignments are made (i.e. when "y(i) := 0 for all u" (Reduce:see NERO)). check-in: 3a7b407410 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
2002-04-09
| ||
12:04:25 | Replaced ios:: with std::ios:: for g++-3.0 compatability. check-in: 2720268445 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
2002-04-08
| ||
17:04:21 | Removed spurious "\n" from output. check-in: 93f6afd1f9 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/make_ode2odes from [2a19c749fd] to [a8e7b1c826].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | + + + | #! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.66 2002/03/26 11:58:58 geraint ## Added cputime monitoring. ## ## Revision 1.65 2001/11/15 06:24:11 geraint ## Updated (-i dassl) residual function to use new DAEFunc (octave-2.1.35). ## YZ residual dependency on Ui still requires some work. ## ## Revision 1.64 2001/08/08 02:15:00 geraint ## Rationalisation of solver code, beginning with algebraic solvers. ## |
︙ | |||
929 930 931 932 933 934 935 | 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 | - + | data.elem (row, ++col) = y.elem (i); data.elem (row, ++col) = t; for (register int i = 0; i < nx; i++) data.elem (row, ++col) = x.elem (i); row++; |
︙ |
Modified mttroot/mtt/lib/cc/mtt_Hybrd_Solver.cc from [7e75a7fc89] to [3f81f0bf76].
︙ | |||
12 13 14 15 16 17 18 | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | - + | MTT::Hybrd_Solver::static_ptr->_yz = MTT::Hybrd_Solver::static_ptr->eval(tryUi); return MTT::Hybrd_Solver::static_ptr->_yz; } void MTT::Hybrd_Solver::Solve (void) { |
︙ |