Overview
Comment: | Put in the -parameters option |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
f6b2c1366c43209cbc92994a22307ebf |
User & Date: | gawthrop@users.sourceforge.net on 2000-04-18 11:14:18 |
Other Links: | branch diff | manifest | tags |
Context
2000-04-18
| ||
11:14:32 | - parameters option check-in: 92ee2d1130 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
11:14:18 | Put in the -parameters option check-in: f6b2c1366c user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
11:11:44 |
mtt_parameters ---> mttpar mtt_n_parameters ---> mttnpar check-in: 10686c9f06 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/mtt_r2m from [f80d4cdcae] to [eb59d320a7].
︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + + + | # Copyright (c) P.J.Gawthrop 1991, 1994, 1995, 1996, 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.15 2000/02/10 14:58:57 peterg ## *** empty log message *** ## ## Revision 1.14 1999/12/08 02:06:00 peterg ## Now incudes csm rep. ## ## Revision 1.13 1999/11/23 00:59:14 peterg ## Now does ssm.m ## ## Revision 1.12 1999/11/15 22:57:20 peterg |
︙ | |||
58 59 60 61 62 63 64 65 66 67 68 69 70 71 | 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | + + + + + + + + + + + + + + + | ## ## Revision 1.1 1998/07/27 16:30:26 peterg ## Initial revision ## ############################################################### # Args while [ -n "`echo $1 | grep '^-'`" ]; do case $1 in -noglobal) noglobal='-noglobal'; ;; -parameters) parameters='-parameters'; ;; *) echo $1 is an unknown option exit;; esac shift done # Set up the language specific stuff rep=$2 ext='m'; codegenerator='PASCAL' Lc='#'; Rc='#'; |
︙ | |||
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | + + + + - - + + | %Read the reduce definitions file in "$1_def.r"; %Read the reduce $REP file in "$1_$rep.r"; %Read the substitution file in "$1_subs.r"; EOF #Inform user echo Creating $outfile.m # Remove the old log file rm -f mtt_r2m.log if [ "$rep" = "ode" ]||[ "$rep" = "cse" ]; then #echo Creating $1_odea.$ext outfileo=$outfile"o" echo Creating $outfileo.m #rm -f $1_odea.$ext.1; #Header |
︙ | |||
203 204 205 206 207 208 209 | 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 | - + - + - + - + | fi if [ "$rep" = "sm" ]||[ "$rep" = "ssm" ]||[ "$rep" = "dm" ]||\ [ "$rep" = "csm" ]||[ "$rep" = "obs" ]; then if [ "$rep" = "sm" ]||[ "$rep" = "ssm" ]; then #Header |
︙ |