Overview
| Comment: | Fixed generation of sese.r with -make-sort option. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
7b11243df40f3cb81c2654bc6f9ebce1 |
| User & Date: | geraint@users.sourceforge.net on 2005-01-06 12:47:53.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2005-01-06
| ||
| 14:42:33 |
Fixed explicit/implicit descriptions of forward/backward Euler. Replaced -c examples with -cc. check-in: a63abf19c4 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
| 12:47:53 | Fixed generation of sese.r with -make-sort option. check-in: 7b11243df4 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
| 12:28:36 | Minor typos. check-in: b064c9ddbc user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt
from [a9420b2732]
to [5109b25308].
| ︙ | ︙ | |||
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 |
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)'
| | | 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 |
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 \$@
| | > | 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
|
| ︙ | ︙ |