Overview
| Comment: | New dummy variables mtt_o (for optimisation), mtt_s (for segmentation) |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
07b381f849d1a9a5bef376d6a4cb644e |
| User & Date: | gawthrop@users.sourceforge.net on 2000-08-24 17:10:59.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2000-08-24
| ||
| 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 | |
| 13:45:30 | *** empty log message *** check-in: 9b03bf0a9d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/mtt_m2p
from [accd586500]
to [5598068649].
| ︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # Copyright (c) P.J.Gawthrop 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.51 2000/08/01 12:25:24 peterg ## Some changes to include files ## ## Revision 1.50 2000/05/19 17:46:41 peterg ## New version of state with par argument ## ## Revision 1.49 2000/05/18 09:45:45 peterg | > > > | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # Copyright (c) P.J.Gawthrop 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.52 2000/08/24 08:30:45 peterg ## *** empty log message *** ## ## Revision 1.51 2000/08/01 12:25:24 peterg ## Some changes to include files ## ## Revision 1.50 2000/05/19 17:46:41 peterg ## New version of state with par argument ## ## Revision 1.49 2000/05/18 09:45:45 peterg |
| ︙ | ︙ | |||
385 386 387 388 389 390 391 |
if (kk==width){printf("\n"); kk=0}
}
}
BEGIN{
comment_regexp = "{"
doing_header = 0
doing_globals = 0
| | > | 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 |
if (kk==width){printf("\n"); kk=0}
}
}
BEGIN{
comment_regexp = "{"
doing_header = 0
doing_globals = 0
No = 500;
Ns = 10;
inc ="$I"
}
{
if ($1=="global")
doing_globals = 1
else{
if (doing_globals==1){
|
| ︙ | ︙ | |||
448 449 450 451 452 453 454 |
printf("\n")
printf("VAR \n");
for (k=1;k<i;k++) printf(" %s,\n",global[k])
printf("%s : REAL;\n", global[i])
# printvar("x",Nx);
# printvar("u",Nu);
# printvar("y",Ny);
| | > | 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 |
printf("\n")
printf("VAR \n");
for (k=1;k<i;k++) printf(" %s,\n",global[k])
printf("%s : REAL;\n", global[i])
# printvar("x",Nx);
# printvar("u",Nu);
# printvar("y",Ny);
printvar("_s",Ns);
printvar("_o",No);
printf("VAR mtt_i, mtt_j : INTEGER;\n");
#if ( (rep=="smxa")||(rep=="smxax") ) {
# printvar("_t",Nt);
#}
printf("\nBEGIN{%s}\n", Sys_rep)
if (rep=="smxa"){
|
| ︙ | ︙ |