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: eb7bd8a2e2484558a289439e67e862c6ae684abac6af723fd7ee63c6fd836cf4
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: 2460097b60 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
12:55:21
Initial revision check-in: eb7bd8a2e2 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
2000-12-05
12:12:39
Initial revision check-in: ca2d0574eb 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


MTT: Model Transformation Tools
GitHub | SourceHut | Sourceforge | Fossil RSS ]