10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Copyright (c) P.J.Gawthrop, 1991, 1994, 1996
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.1 2000/12/28 12:24:03 peterg
## Put under RCS
##
## Revision 1.2 1996/08/25 10:11:32 peter
## Added END in output file.
## Error handling.
##
## Revision 1.1 1996/08/19 15:06:16 peter
## Initial revision
##
###############################################################
optimise=''; optimise_msg=''
while [ -n "`echo $1 | grep '^-'`" ]; do
case $1 in
-optimise)
optimise='-optimise'
optimise_msg=' with optimisation' ;;
*)
echo "$1 is an invalid argument - ignoring" ;;
esac
shift
done
# Create the reduce output code
def2write_r $optimise $1 $2
|
>
>
>
|
|
|
>
>
>
|
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Copyright (c) P.J.Gawthrop, 1991, 1994, 1996
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.2 2001/07/27 23:29:10 geraint
## Optimises only when requested (-opt).
##
## Revision 1.1 2000/12/28 12:24:03 peterg
## Put under RCS
##
## Revision 1.2 1996/08/25 10:11:32 peter
## Added END in output file.
## Error handling.
##
## Revision 1.1 1996/08/19 15:06:16 peter
## Initial revision
##
###############################################################
optimise=''; optimise_msg=''
while [ -n "`echo $1 | grep '^-'`" ]; do
case $1 in
-optimise_global )
optimise='-optimise_global'
optimise_msg=' with global optimisation' ;;
-optimise_local )
optimise='-optimise_local'
optimise_msg=' with local optimisation' ;;
* )
echo "$1 is an invalid argument - ignoring" ;;
esac
shift
done
# Create the reduce output code
def2write_r $optimise $1 $2
|
133
134
135
136
137
138
139
140
141
142
|
SHUT "$1_$2.r2";
quit;
EOF
cat $1_$2.r1 $1_$2.r2 > $1_$2.r
# Now invoke the standard error handling.
mtt_error_r csm2sm_r.log
|
>
>
>
>
|
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
SHUT "$1_$2.r2";
quit;
EOF
cat $1_$2.r1 $1_$2.r2 > $1_$2.r
if [ ${optimise:-""} = "-optimise_global" ]; then
mtt_optimise_global $1 $2
fi
# Now invoke the standard error handling.
mtt_error_r csm2sm_r.log
|