Differences From Artifact [c438ecdefe]:
- Executable file
mttroot/mtt/bin/trans/mtt_optimise
— part of check-in
[e5dbca659d]
at
2002-09-10 23:24:19
on branch origin/global-optimisation
— Rationalised local and global optimisations.
Fixes presentation of locally optimised code (ode view).
Much more elegant :-) (user: geraint@users.sourceforge.net, size: 2612) [annotate] [blame] [check-ins using] [more...]
To Artifact [543d412814]:
- Executable file mttroot/mtt/bin/trans/mtt_optimise — part of check-in [0e04441e7e] at 2002-09-13 09:45:25 on branch origin/global-optimisation — Added lines to optimise mttedx. (user: geraint@users.sourceforge.net, size: 2678) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
E_REP_NOT_SUPPORTED=-19
E_FILE_NOT_EXIST=-20
case $representation in
ae)
matrix=yz ;
nmatrix=`mtt_getsize $system yz` ;;
ode)
matrix=dx ;
nmatrix=`mtt_getsize $system x` ;;
cseo | odeo)
matrix=y ;
nmatrix=`mtt_getsize $system y` ;;
*)
| > > > | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
E_REP_NOT_SUPPORTED=-19
E_FILE_NOT_EXIST=-20
case $representation in
ae)
matrix=yz ;
nmatrix=`mtt_getsize $system yz` ;;
cse | csex)
matrix=edx ;
nmatrix=`mtt_getsize $system x` ;;
ode)
matrix=dx ;
nmatrix=`mtt_getsize $system x` ;;
cseo | odeo)
matrix=y ;
nmatrix=`mtt_getsize $system y` ;;
*)
|
| ︙ | ︙ |