Overview
Comment: | Initial revision |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
8c40c5e1e6a675c2844910136b1436b2 |
User & Date: | gawthrop@users.sourceforge.net on 2000-12-27 12:55:21 |
Other Links: | branch diff | manifest | tags |
Context
2000-12-27
| ||
13:11:43 | *** empty log message *** check-in: a1acac7802 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
12:55:21 | Initial revision check-in: 8c40c5e1e6 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2000-12-05
| ||
12:12:39 | Initial revision check-in: f5def571c2 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/check_integration version [a5d2ce5a34].
> > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #!/bin/sh ## Check if obsolete method of specifiying integration method in use. if [ -f "$1_simpar.txt" ]; then method_line=`grep -i METHOD $1_simpar.txt` if [ -n "`echo $method_line | grep -i euler`" ]; then echo "$1_simpar.txt contains Euler method - please use mtt -i euler in future" mtt_switches="$mtt_switches -i euler"; elif [ -n "`echo $method_line | grep -i implicit`" ]; then echo "$1_simpar.txt contains Implicit method - please use mtt -i implicit in future" mtt_switches="$mtt_switches -i implicit"; fi fi echo Invoking mtt $mtt_switches $1 $2 $3 $4 mtt $mtt_switches $1 $2 $3 $4 |