Overview
| Comment: | Added dummy -optimise switch to prevent falling over for -cc generation. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
9965eb4f79272029b919166e0a6d3adb |
| User & Date: | geraint@users.sourceforge.net on 2002-03-26 11:59:54.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2002-03-26
| ||
| 12:02:31 | Changed .tmp output file to reduce nonsense key commands sent to terminal. check-in: 543851b41f user: geraint@users.sourceforge.net tags: origin/master, trunk | |
| 11:59:54 | Added dummy -optimise switch to prevent falling over for -cc generation. check-in: 9965eb4f79 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
| 11:58:58 | Added cputime monitoring. check-in: 26692bd604 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/mtt_r2m
from [cfb6e8655f]
to [6308144dd1].
| ︙ | ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # Copyright (C) 2000 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.28 2001/07/13 04:54:04 geraint ## Branch merge: numerical-algebraic-solution back to main. ## ## Revision 1.27.4.1 2001/05/04 04:07:24 geraint ## Numerical solution of algebraic equations. ## sys_ae.cc written for unsolved inputs. ## Solution of equations using hybrd from MINPACK (as used by Octave fsolve). | > > > > | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | # Copyright (C) 2000 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.29 2001/09/07 00:25:56 geraint ## Partial fix for insidious bug which eliminates lines of code when parameter ## names of the form (in* or off*) start continuation lines. ## ## Revision 1.28 2001/07/13 04:54:04 geraint ## Branch merge: numerical-algebraic-solution back to main. ## ## Revision 1.27.4.1 2001/05/04 04:07:24 geraint ## Numerical solution of algebraic equations. ## sys_ae.cc written for unsolved inputs. ## Solution of equations using hybrd from MINPACK (as used by Octave fsolve). |
| ︙ | ︙ | |||
120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
case $1 in
-noglobals)
noglobals='-noglobals';
;;
-parameters)
parameters='-parameters';
par='mttpar'
;;
*)
echo $1 is an unknown option
exit;;
esac
shift
done
| > > | 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 |
case $1 in
-noglobals)
noglobals='-noglobals';
;;
-parameters)
parameters='-parameters';
par='mttpar'
;;
-optimise)
;;
*)
echo $1 is an unknown option
exit;;
esac
shift
done
|
| ︙ | ︙ |