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
|
# Copyright (c) P.J.Gawthrop, 1991, 1994.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
# Revision 1.1 1996/11/05 09:19:28 peterg
# Initial revision
#
###############################################################
#Inform user
echo Creating $1_cse.tex
# Remove the old log file
rm -f cse_r2tex.log
# Use reduce to accomplish the transformation
reduce >cse_r2tex.log << EOF
%Read the definitions file
in "$1_def.r";
%Read thesimplification file
in "$1_simp.r";
%Read the constrained-state equations file
in "$1_cse.r";
OFF Echo;
OFF Nat;
|
>
>
>
>
>
>
|
|
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
|
# Copyright (c) P.J.Gawthrop, 1991, 1994.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
# Revision 1.2 1996/11/12 09:11:20 peterg
# Removed all the hoorrible name changes
#
# Revision 1.1 1996/11/05 09:19:28 peterg
# Initial revision
#
###############################################################
#Inform user
echo Creating $1_cse.tex
# Remove the old log file
rm -f cse_r2tex.log
# Use reduce to accomplish the transformation
reduce >cse_r2tex.log << EOF
%Read the definitions file
in "$1_def.r";
%Read the parameter file
in "$1_params.r";
%Read the simplification file
in "$1_simp.r";
%Read the constrained-state equations file
in "$1_cse.r";
OFF Echo;
OFF Nat;
|