Overview
Comment: | Uses sort_sympar to uniquely produce the sympar list. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
9bd8c00eeea96594f623eb40e8b9498d |
User & Date: | gawthrop@users.sourceforge.net on 1998-03-07 15:23:40 |
Other Links: | branch diff | manifest | tags |
Context
1998-03-07
| ||
15:27:20 | Don't do initial states. check-in: 53c84cbd7a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
15:23:40 | Uses sort_sympar to uniquely produce the sympar list. check-in: 9bd8c00eee user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
15:15:53 | Initial revision check-in: 31055e0cb2 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [2005c0d5d6] to [185e0dd03c].
︙ | ︙ | |||
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.136 1998/03/04 16:34:19 peterg ## New local (_cr.r) and generic (.cr) CR structure. ## CR and lbl now have view mode. ## CRS in abg_tex. ## ## Revision 1.135 1998/02/25 22:09:48 peterg ## Added simpar representation. | > > > > > > | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | # Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996. ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.137 1998/03/07 14:04:17 peterg ## dae creation split into 2 parts: ## 1. create a raw (ie without constitutive relationship) dae (rdae) ## 2. add the raw dae to the crs to get the dae. ## reduce has less work to do with this approach ## ## Revision 1.136 1998/03/04 16:34:19 peterg ## New local (_cr.r) and generic (.cr) CR structure. ## CR and lbl now have view mode. ## CRS in abg_tex. ## ## Revision 1.135 1998/02/25 22:09:48 peterg ## Added simpar representation. |
︙ | ︙ | |||
1023 1024 1025 1026 1027 1028 1029 | cat $1_sympar.txt >> MTT_sympar.txt; \ fi sh $1_sub.sh "rm -f " '_sympar.txt' # Delete sympar files sh $1_sub.sh "mtt $mtt_switches -q -u -l $level+1 " ' sympar txt' # and recreate them if [ "$level" = "0" ]; then \ | | | | 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 | cat $1_sympar.txt >> MTT_sympar.txt; \ fi sh $1_sub.sh "rm -f " '_sympar.txt' # Delete sympar files sh $1_sub.sh "mtt $mtt_switches -q -u -l $level+1 " ' sympar txt' # and recreate them if [ "$level" = "0" ]; then \ sort_sympar <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 $mtt_switches -q -u -l $level+1 " ' sympar txt' # and recreate them if [ "$level" = "0" ]; then \ sort_sympar <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 |
︙ | ︙ |