Overview
| Comment: | Reverted to line-by-line optimisation as default and added caution to description of -optg. Global optimisation has been observed to create assignments using |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
ca64dde77d24cc330c3e0a5042d7e1a4 |
| User & Date: | geraint@users.sourceforge.net on 2003-02-11 20:04:08.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2003-02-12
| ||
| 01:13:07 | *** empty log message *** check-in: 34dec6dd16 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
|
2003-02-11
| ||
| 20:04:08 |
Reverted to line-by-line optimisation as default and added caution to description of -optg. Global optimisation has been observed to create assignments using | |
| 19:55:51 |
Now uses tr instead of sed to replace array index parentheses (tr is better at coping with very, very long lines). Fixed tidy-up regexps in decrement_indices function. Fixed comment and function name c_to_fortran_paren. check-in: 64dfc2cb69 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt
from [e009fdddcc]
to [a1a691cbbe].
| ︙ | |||
13 14 15 16 17 18 19 20 21 22 23 24 25 26 | 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 | 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;
;;
|
| ︙ | |||
1606 1607 1608 1609 1610 1611 1612 | 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'
|
| ︙ |