10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright (c) P.J.Gawthrop 1991, 1994, 1995, 1996
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.7 1997/08/29 07:58:17 peterg
## Changed MTT to mtt in the .m files.
##
# Revision 1.6 1997/01/05 19:34:35 peterg
# Don't write globals which are already assigned to a number.
#
## Revision 1.5 1996/09/13 19:41:39 peter
|
>
>
>
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright (c) P.J.Gawthrop 1991, 1994, 1995, 1996
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.8 1998/02/25 18:03:49 peterg
## Removed the argument reading bits.
##
## Revision 1.7 1997/08/29 07:58:17 peterg
## Changed MTT to mtt in the .m files.
##
# Revision 1.6 1997/01/05 19:34:35 peterg
# Don't write globals which are already assigned to a number.
#
## Revision 1.5 1996/09/13 19:41:39 peter
|
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
%Set up the number of argument variables to zero in case the user has forgotten
MTTNVar := 0;
%Read the parameter file
in "$1_sympar.r";
ON NERO; % Suppress zero elements
%Define the common part of the functions.
PROCEDURE common;
BEGIN
IF MTTNvar>0 THEN
BEGIN
|
|
|
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
%Set up the number of argument variables to zero in case the user has forgotten
MTTNVar := 0;
%Read the parameter file
in "$1_sympar.r";
%ON NERO; % Suppress zero elements
%Define the common part of the functions.
PROCEDURE common;
BEGIN
IF MTTNvar>0 THEN
BEGIN
|