Differences From Artifact [e009fdddcc]:
- Executable file mttroot/mtt/bin/mtt — part of check-in [4913bcced7] at 2003-02-06 20:28:40 on branch origin/master — Added -ibg switch to aid testing during development of ibg2abg.m (user: geraint@users.sourceforge.net, size: 110532) [annotate] [blame] [check-ins using] [more...]
To Artifact [a1a691cbbe]:
- Executable file
mttroot/mtt/bin/mtt
— part of check-in
[d38e195817]
at
2003-02-11 20:04:08
on branch origin/master
— Reverted to line-by-line optimisation as default and added caution to
description of -optg.Global optimisation has been observed to create assignments using
uninitialised temporary variables. (user: geraint@users.sourceforge.net, size: 110666) [annotate] [blame] [check-ins using] [more...]
︙ | ︙ | |||
13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Copyright (C) 2001 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.368 2002/12/12 17:18:41 geraint ## Fixed [ 647664 ] Namespace clash: LANG ## Prepended MTT_ to SYS, OPTS and LANG environment variables. ## ## Revision 1.367 2002/12/09 00:14:08 geraint ## Hierarchical dia and mixed dia/fig bond graphs now working. ## | > > > | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | # Copyright (C) 2001 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.369 2003/02/06 20:28:40 geraint ## Added -ibg switch to aid testing during development of ibg2abg.m ## ## Revision 1.368 2002/12/12 17:18:41 geraint ## Fixed [ 647664 ] Namespace clash: LANG ## Prepended MTT_ to SYS, OPTS and LANG environment variables. ## ## Revision 1.367 2002/12/09 00:14:08 geraint ## Hierarchical dia and mixed dia/fig bond graphs now working. ## |
︙ | ︙ | |||
1503 1504 1505 1506 1507 1508 1509 | subsystem="_"$2; shift;; -oct ) fixcc='-fixcc' mtt_switches="$mtt_switches $1"; using_oct=yes; ;; | | | | 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 | subsystem="_"$2; shift;; -oct ) fixcc='-fixcc' mtt_switches="$mtt_switches $1"; using_oct=yes; ;; -opt | -optl ) mtt_switches="$mtt_switches $1"; optimise='-optimise_local';; -optg ) mtt_switches="$mtt_switches $1"; optimise='-optimise_global';; -ntmpvar ) num_tmp_var=$2; mtt_switches="$mtt_switches $1 $2"; shift;; -partition ) mtt_switches="$mtt_switches $1"; |
︙ | ︙ | |||
1606 1607 1608 1609 1610 1611 1612 | echo ' -d <dir> use directory <dir>' echo ' -dr <dir> use files contained in <dir>' echo ' -dc Maximise derivative (not integral) causality' echo ' -i <implicit|euler|rk4|dassl> Use implicit, euler, rk4 or dassl integration' echo ' -ae <reduce|hybrd|dassl|hooke> Solve algebraic equations with specified solver' echo ' -o ode is same as dae' echo ' -oct use oct files in place of m files where appropriate' | | | | 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 | echo ' -d <dir> use directory <dir>' echo ' -dr <dir> use files contained in <dir>' echo ' -dc Maximise derivative (not integral) causality' echo ' -i <implicit|euler|rk4|dassl> Use implicit, euler, rk4 or dassl integration' echo ' -ae <reduce|hybrd|dassl|hooke> Solve algebraic equations with specified solver' echo ' -o ode is same as dae' echo ' -oct use oct files in place of m files where appropriate' echo ' -opt optimise code generation (equivalent to -optl)' echo ' -optl optimise code generation (local : line-by-line)' echo ' -optg optimise code generation (global : full vector) (EXPERIMENTAL)' echo " -ntmpvar <N> declare N temporary variables (default=$num_tmp_var)" echo ' -p print environment variables' echo ' -partition partition hierachical system' echo ' -pdf generate pdf in place of ps' echo ' -r reset time stamp on representation' echo ' -s generate sensitivity BG (use mtt -s sSys rep lang)' echo ' -ss use steady-state info to initialise simulations' |
︙ | ︙ |