Overview
Comment: | Now optimises as well as segmenting - uses the SCOPE package |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
03af8bfc3269eb74447f019b98bbce07 |
User & Date: | gawthrop@users.sourceforge.net on 2000-08-24 17:11:40 |
Other Links: | branch diff | manifest | tags |
Context
2000-08-24
| ||
17:12:01 | Now optimises using SCOPE check-in: f915d777b8 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
17:11:40 | Now optimises as well as segmenting - uses the SCOPE package check-in: 03af8bfc32 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
17:10:59 | New dummy variables mtt_o (for optimisation), mtt_s (for segmentation) check-in: 07b381f849 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/mtt_r2m from [db818e2d97] to [b6f5f8a61c].
︙ | |||
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.17 2000/05/20 15:23:56 peterg ## Paramererised version of sm etc etc (using -parameter switch) ## ## Revision 1.16 2000/04/18 11:14:18 peterg ## Put in the -parameters option ## ## Revision 1.15 2000/02/10 14:58:57 peterg ## *** empty log message *** ## ## Revision 1.14 1999/12/08 02:06:00 peterg |
︙ | |||
100 101 102 103 104 105 106 107 | 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | + - + + + - + + + + + | Nx=`grep "MTTNx " <$1_def.r | awk '{print $3}' | sed 's/;//'` #Set up gentran cat <<EOF >mtt_setreduce.r % Set up the code generator % Load the general translator package LOAD GENTRAN; LOAD SCOPE; GENTRANLANG!* := '$codegenerator; |
︙ | |||
139 140 141 142 143 144 145 | 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 | - - + + | #echo Creating $1_odea.$ext outfileo=$outfile"o" echo Creating $outfileo.m #rm -f $1_odea.$ext.1; #Header |
︙ | |||
211 212 213 214 215 216 217 | 221 222 223 224 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 258 259 260 261 262 263 264 265 266 267 268 269 270 271 | - - - + + + - + - + - + - + - + - + - + | fi #if [ "$rep" = "ode" ]; then # touch mtt_odee #fi |
︙ | |||
327 328 329 330 331 332 333 | 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 | - - + + - + - + - + | mtt_matrix_n := $N; mtt_matrix_m := $M; lang_matrix(); GENTRANSHUT "$outfile.1"; EOF |