Overview
Comment: | Changed argument list. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
5c30a66bd5ec595eaa48a536c51f0414 |
User & Date: | gawthrop@users.sourceforge.net on 1999-03-06 02:18:10 |
Other Links: | branch diff | manifest | tags |
Context
1999-03-06
| ||
02:19:43 | Changed args to _input check-in: ade2e4aa5c user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
02:18:10 | Changed argument list. check-in: 5c30a66bd5 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1999-03-05
| ||
08:25:11 | Changed default to lin. check-in: 8911da89f6 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/txt2m from [55eece0e52] to [193796b018].
︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% # %% Version control history # %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% # %% $Id$ # %% $Log$ # %% Revision 1.14 1999/02/16 04:38:22 peterg # %% Now forces creation of _smx file if METHOD=IMPLICIT in simpar.txt # %% # %% Revision 1.13 1998/08/31 11:43:37 peterg # %% Now lower cases globals in numpar files # %% # %% Revision 1.12 1998/08/14 10:47:31 peterg | > > > | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% # %% Version control history # %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% # %% $Id$ # %% $Log$ # %% Revision 1.15 1999/02/16 21:44:38 peterg # %% Revised smx generation # %% # %% Revision 1.14 1999/02/16 04:38:22 peterg # %% Now forces creation of _smx file if METHOD=IMPLICIT in simpar.txt # %% # %% Revision 1.13 1998/08/31 11:43:37 peterg # %% Now lower cases globals in numpar files # %% # %% Revision 1.12 1998/08/14 10:47:31 peterg |
︙ | ︙ | |||
72 73 74 75 76 77 78 | if [ "$representation" = "state" ]; then name='mttx'; arg=''; fi if [ "$representation" = "input" ]; then name='mttu'; | | | 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | if [ "$representation" = "state" ]; then name='mttx'; arg=''; fi if [ "$representation" = "input" ]; then name='mttu'; arg='(mttt,mttx,mtty)' fi if [ "$representation" = "simpar" ]; then # Check if implicit method and generate xmx.m if implicit=`grep -i METHOD $1_simpar.txt | grep -i -c IMPLICIT` if [ "$implicit" = "1" ]; then mtt -q $1 smx m else |
︙ | ︙ |