8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright (c) P.J.Gawthrop, 1996.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.5 1996/12/07 18:06:50 peterg
## Now detects symbolic args ($1 etc) and ignores them.
##
# Revision 1.4 1996/08/30 18:45:32 peter
# Removed header stuff.
#
## Revision 1.3 1996/08/30 10:30:54 peter
|
>
>
>
|
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright (c) P.J.Gawthrop, 1996.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
# Revision 1.6 1996/12/07 20:02:43 peterg
# Fixed symbolic parameter bug.
#
## Revision 1.5 1996/12/07 18:06:50 peterg
## Now detects symbolic args ($1 etc) and ignores them.
##
# Revision 1.4 1996/08/30 18:45:32 peter
# Removed header stuff.
#
## Revision 1.3 1996/08/30 10:30:54 peter
|
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
}
}
}
}
END {
# print the _sympar file
printf("MTTNVar := %1.0f;\n", symbol_count);
if (symbol_count>0) {
printf("MATRIX MTTVar(MTTNVar,1);\n");
split(symbols,symbol);
for (i = 1; i <= symbol_count; i++) {
printf("MTTVar(%1.0f,1) \t := %s;\n", i, symbol[i]);
}
}
}
|
|
|
|
>
|
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
}
}
}
}
END {
# print the _sympar file
# printf("MTTNVar := %1.0f;\n", symbol_count);
if (symbol_count>0) {
# printf("MATRIX MTTVar(MTTNVar,1);\n");
split(symbols,symbol);
for (i = 1; i <= symbol_count; i++) {
# printf("MTTVar(%1.0f,1) \t := %s\n", i, symbol[i]);
printf("%s\n", symbol[i]);
}
}
}
|