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.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.
##
|
>
>
>
|
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright (C) 2000 by Peter J. Gawthrop
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.30 2002/03/26 11:59:54 geraint
## Added dummy -optimise switch to prevent falling over for -cc generation.
##
## 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.
##
|
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
|
-noglobals)
noglobals='-noglobals';
;;
-parameters)
parameters='-parameters';
par='mttpar'
;;
-optimise)
;;
*)
echo $1 is an unknown option
exit;;
esac
shift
done
|
|
|
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
-noglobals)
noglobals='-noglobals';
;;
-parameters)
parameters='-parameters';
par='mttpar'
;;
-optimise_local | -optimise_global )
;;
*)
echo $1 is an unknown option
exit;;
esac
shift
done
|