Overview
Comment: | Fixed directory string bug. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
0cb11ee0c88c138c9e4841d04d58f005 |
User & Date: | gawthrop@users.sourceforge.net on 1998-02-09 13:51:04 |
Other Links: | branch diff | manifest | tags |
Context
1998-02-09
| ||
13:54:34 | Initial revision check-in: 30f2e5613b user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
13:51:04 | Fixed directory string bug. check-in: 0cb11ee0c8 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
08:39:27 | Set inputs to zero as well. check-in: 166267ebaf user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [204a6fdf0a] to [92e6a4e54f].
︙ | ︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996. ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.121 1998/02/06 14:36:51 peterg ## Report on copying back from MTT_work ## ## Revision 1.120 1998/02/05 16:06:53 peterg ## Removed debugging lines. ## Auto parts in books. ## | > > > | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996. ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.122 1998/02/06 15:02:26 peterg ## New default sspar -- sets all states to zero. ## ## Revision 1.121 1998/02/06 14:36:51 peterg ## Report on copying back from MTT_work ## ## Revision 1.120 1998/02/05 16:06:53 peterg ## Removed debugging lines. ## Auto parts in books. ## |
︙ | ︙ | |||
756 757 758 759 760 761 762 | fi # Tidy mode - operate in the directory MTT-work if [ "$tidy" = "tidy" ]; then mkdir -p MTT_work cp -u *_*.* MTT_work 2>/dev/null cd MTT_work | > > > > | > > | > | | 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 | fi # Tidy mode - operate in the directory MTT-work if [ "$tidy" = "tidy" ]; then mkdir -p MTT_work cp -u *_*.* MTT_work 2>/dev/null cd MTT_work if [ -z "$directory" ]; then Directory='' else Directory=$directory/MTT_work fi mtt -u -q $mtt_switches -S "$Directory" $1 $2 $3 $4 if [ "$3" != "view" ]; then echo Copying " " $1_$2.$3 cp -f $1_$2.$3 .. fi # Remove the MTT_work directory if very tidy if [ "$verytidy" = "verytidy" ]; then echo Removing all working files rm -rf ../MTT_work |
︙ | ︙ | |||
1078 1079 1080 1081 1082 1083 1084 | echo "%% This file provides symbolic parameters for simplification";\ cat $MTTPATH/trans/m/rcs_header.txt; \ echo 'END;'; \ )> $1_params.r #SUMMARY sspar steady-state definition (r) | | | 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 | echo "%% This file provides symbolic parameters for simplification";\ cat $MTTPATH/trans/m/rcs_header.txt; \ echo 'END;'; \ )> $1_params.r #SUMMARY sspar steady-state definition (r) $1_sspar.r: $1_def.m makesspar $1 #SUMMARY rep report (txt) #SUMMARY rep report (tex) #SUMMARY rep report (view) |
︙ | ︙ |