10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
+
+
+
+
+
|
# Copyright (c) P.J.Gawthrop, 1991, 1994, 1996
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.7 2001/04/11 09:44:26 gawthrop
## Fixed cc and c problems to do with pow(x,y) and integers
## mtt/lib/reduce/fix_c.r is included in rdae2dae and cse2smx_lang for
## -c, -cc and -oct options
##
## Revision 1.6 2001/02/03 13:40:45 gawthrop
## Added explicit MTTNu
##
## Revision 1.5 2000/12/28 12:39:02 peterg
## Put under RCS
##
## Revision 1.4 2000/09/04 08:42:53 peterg
|
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
-
-
-
+
+
+
+
|
# Remove the old log file
rm -f $logname
# Use symbolic algebra to accomplish the transformation
$SYMBOLIC >$logname << EOF
% Fix c code if required
$include
%Read the formatting function
in "$MTTPATH/trans/reduce_matrix.r";
% CRs
in "$crname";
% Raw dae
in "$rdaename";
% Substitution
in "$subsname";
% Fix c code if required
$include
OFF Echo;
OFF Nat;
%Create the output file
OUT "$daename";
|