Overview
| Comment: | Added lines to optimise mttedx. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/global-optimisation | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
138987448b695bf5123637c8cdd4adf6 |
| User & Date: | geraint@users.sourceforge.net on 2002-09-13 09:45:25.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2002-09-13
| ||
| 10:10:42 | Commented out optimisation. check-in: 9b540419c6 user: geraint@users.sourceforge.net tags: origin/global-optimisation, trunk | |
| 09:45:25 | Added lines to optimise mttedx. check-in: 138987448b user: geraint@users.sourceforge.net tags: origin/global-optimisation, trunk | |
|
2002-09-12
| ||
| 18:50:50 | Uncommented cse optimisations - they seem to work ok. check-in: b96c667293 user: geraint@users.sourceforge.net tags: origin/global-optimisation, trunk | |
Changes
Modified mttroot/mtt/bin/trans/mtt_optimise
from [c438ecdefe]
to [543d412814].
| ︙ | ︙ | |||
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` ;;
*)
|
| ︙ | ︙ |