13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright (C) 2001 by Peter J. Gawthrop
###############################################################
## Version control history
###############################################################
## $Header$
## $Log$
## Revision 1.403 2004/09/07 20:38:44 geraint
## Applies CRs before creating sese.make to avoid Circular dependencies.
##
## Revision 1.402 2004/09/03 08:35:27 geraint
## Copies Perl CRs to an mtt subdirectory (=> mtt:: workspace).
##
## Revision 1.401 2004/09/02 22:04:06 geraint
|
>
>
>
>
|
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright (C) 2001 by Peter J. Gawthrop
###############################################################
## Version control history
###############################################################
## $Header$
## $Log$
## Revision 1.404 2004/09/10 21:05:15 geraint
## Ensure that the system exists before proceeding.
## This should stop me from copying my home directory to MTT_work.
##
## Revision 1.403 2004/09/07 20:38:44 geraint
## Applies CRs before creating sese.make to avoid Circular dependencies.
##
## Revision 1.402 2004/09/03 08:35:27 geraint
## Copies Perl CRs to an mtt subdirectory (=> mtt:: workspace).
##
## Revision 1.401 2004/09/02 22:04:06 geraint
|
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
|
echo ' -no-reduce try not to use symbolic algebra (EXPERIMENTAL)'
echo ' -ntmpvar <N> declare N temporary variables (default=$num_tmp_var)'
echo ' -p print environment variables'
echo ' -partition partition hierachical system'
echo ' -pdf generate pdf in place of ps'
echo ' -r reset time stamp on representation'
echo ' -s generate sensitivity BG (use mtt -s sSys rep lang)'
echo ' -make-sort use sorted equations (sese, generated by make) and Euler integration (EXPERIMENTAL)'
echo ' -sort use sorted equations (sese, generated by seqn) and Euler integration (EXPERIMENTAL)'
echo ' -ss use steady-state info to initialise simulations'
echo ' -stdin read input data from standard input for simulations'
echo ' -sub <subsystem> operate on this subsystem'
echo ' -t tidy mode (default)'
echo ' -trace Just indicate what mtt will do - but do not do it'
echo ' -u untidy mode (leaves files in current dir)'
|
|
|
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
|
echo ' -no-reduce try not to use symbolic algebra (EXPERIMENTAL)'
echo ' -ntmpvar <N> declare N temporary variables (default=$num_tmp_var)'
echo ' -p print environment variables'
echo ' -partition partition hierachical system'
echo ' -pdf generate pdf in place of ps'
echo ' -r reset time stamp on representation'
echo ' -s generate sensitivity BG (use mtt -s sSys rep lang)'
echo ' -make-sort use sorted equations (sese, generated by make) (EXPERIMENTAL)'
echo ' -sort use sorted equations (sese, generated by seqn) and Euler integration (EXPERIMENTAL)'
echo ' -ss use steady-state info to initialise simulations'
echo ' -stdin read input data from standard input for simulations'
echo ' -sub <subsystem> operate on this subsystem'
echo ' -t tidy mode (default)'
echo ' -trace Just indicate what mtt will do - but do not do it'
echo ' -u untidy mode (leaves files in current dir)'
|
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
|
mtt_r2m ${sys} sesy m
${sys}_sae.m: ${sys}_def.r ${sys}_sae.r ${sys}_sympar.txt
echo Creating \$@
mtt_r2m ${sys} sae m
${sys}_sese.r: ${sys}_sese.make
echo Creating \$@
make -f \$< all > \$@
${sys}_sesx.r: ${sys}_sese.make
echo Creating \$@
make -f \$< MTTdX > \$@
${sys}_sesy.r: ${sys}_sese.make
echo Creating \$@
make -f \$< MTTy > \$@
${sys}_sae.r: ${sys}_sese.make
|
|
>
|
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
|
mtt_r2m ${sys} sesy m
${sys}_sae.m: ${sys}_def.r ${sys}_sae.r ${sys}_sympar.txt
echo Creating \$@
mtt_r2m ${sys} sae m
${sys}_sese.r: ${sys}_sese.make
echo Creating \$@
make -f \$< MTTdX MTTy > \$@
echo 'END;' >> \$@
${sys}_sesx.r: ${sys}_sese.make
echo Creating \$@
make -f \$< MTTdX > \$@
${sys}_sesy.r: ${sys}_sese.make
echo Creating \$@
make -f \$< MTTy > \$@
${sys}_sae.r: ${sys}_sese.make
|