Overview
Comment: | _sympar.txt now has a second column - the system type from whence the parameter (in the first column) came. Done on the train Glasgow-Warrington ! |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
942a22044b7edeb549122b16cecd0f5b |
User & Date: | gawthrop@users.sourceforge.net on 1997-09-18 16:57:28 |
Other Links: | branch diff | manifest | tags |
Context
1997-09-18
| ||
17:10:18 |
Changed comments pertaining to the parameters to use the new column 2 of the sympar file (the system type). Added blank line to separate parmeters from states. (Done in the Chester Court Hotel). check-in: d924e27c50 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
16:57:28 |
_sympar.txt now has a second column - the system type from whence the parameter (in the first column) came. Done on the train Glasgow-Warrington ! check-in: 942a22044b user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
13:15:15 |
Fixed incorrect error message flagging inappropriate flow outputs -- used to give the effort rather than the flow in the error message. check-in: 894128874b user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [8ce9831bdb] to [495bde21c2].
︙ | ︙ | |||
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.91 1997/09/11 08:21:08 peterg ## copy utility split into two: ## copy: copies examples (copies the entire directory) ## compcopy: (just used internally) copies components. ## ## Revision 1.90 1997/08/30 19:35:39 peterg ## Added date to mtt line | > > > | 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.92 1997/09/11 17:08:46 peterg ## Added spreadsheet version of odeso ## ## Revision 1.91 1997/09/11 08:21:08 peterg ## copy utility split into two: ## copy: copies examples (copies the entire directory) ## compcopy: (just used internally) copies components. ## ## Revision 1.90 1997/08/30 19:35:39 peterg ## Added date to mtt line |
︙ | ︙ | |||
704 705 706 707 708 709 710 | cat $1_sympar.txt >> MTT_sympar.txt; \ fi sh $1_sub.sh "rm -f " '_sympar.txt' # Delete sympar files sh $1_sub.sh "mtt -q -l $level+1 " ' sympar txt' # and recreate them if [ "$level" = "0" ]; then \ | | | | 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 | cat $1_sympar.txt >> MTT_sympar.txt; \ fi sh $1_sub.sh "rm -f " '_sympar.txt' # Delete sympar files sh $1_sub.sh "mtt -q -l $level+1 " ' sympar txt' # and recreate them if [ "$level" = "0" ]; then \ sort -u +1 +0 MTT_sympar.txt> $1_sympar.txt; \ fi endif ifeq ($switches,1) $1_sympar.txt: $1_sub.sh $1_struc.txt lbl2sympar_txt2txt $1 if [ "$level" = "0" ]; then \ mv $1_sympar.txt MTT_sympar.txt; \ else \ cat $1_sympar.txt >> MTT_sympar.txt; \ fi sh $1_sub.sh "rm -f " '_sympar.txt' # Delete sympar files sh $1_sub.sh "mtt -q -l $level+1 " ' sympar txt' # and recreate them if [ "$level" = "0" ]; then \ sort -u +1 +0 MTT_sympar.txt> $1_sympar.txt1; \ struc2switch_txt $1; \ echo "Appending switch declarations"; \ cat $1_sympar.txt1 $1_switch.txt> $1_sympar.txt; \ fi endif |
︙ | ︙ |