Overview
| Comment: | JUst do explicit params at the top level |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
19daa0641a9f98fa084aed75177ccf97 |
| User & Date: | gawthrop@users.sourceforge.net on 2001-07-12 07:41:18.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2001-07-13
| ||
| 00:51:39 |
Fixed generation of odes.sg from .m and .oct simulations. .cc, .m and .oct simulations now all write mtt_data (lower case). check-in: 7fcda3f846 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
|
2001-07-12
| ||
| 07:41:18 | JUst do explicit params at the top level check-in: 19daa0641a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 07:31:07 | strips out explicit #PAR (#VAR) declarations from lbl.txt or abg.m check-in: 1c1395bf50 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/abg2sympar_m2txt
from [6b223222ab]
to [538470dfa1].
| ︙ | ︙ | |||
74 75 76 77 78 79 80 |
## Now get the explicit declarations
if [ -n "$UseLabelFile" ]; then ## Take input from lbl.txt
ext=_lbl.txt
else
ext=_abg.m
fi
| | | 74 75 76 77 78 79 80 81 82 83 84 85 86 |
## Now get the explicit declarations
if [ -n "$UseLabelFile" ]; then ## Take input from lbl.txt
ext=_lbl.txt
else
ext=_abg.m
fi
strip_pars.sh $1${ext} $1 | sort -u > mtt_explicit_args
## And write sorted list
cat mtt_explicit_args mtt_stripped_args
|