Overview
Comment: | -ss switch reinstated |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
096f943380844d94f55f8265a30ca1c2 |
User & Date: | gawthrop@users.sourceforge.net on 2003-08-04 09:15:09 |
Other Links: | branch diff | manifest | tags |
Context
2003-08-05
| ||
15:29:36 | Now handles ss.r files with implicit zero values check-in: 1a97bd46dd user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2003-08-04
| ||
09:15:09 | -ss switch reinstated check-in: 096f943380 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
09:10:30 | Now handles steady-state computation for _state.txt. check-in: 908f788434 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [9b9196014c] to [923212d094].
︙ | ︙ | |||
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.376 2003/05/09 09:46:35 gawthrop ## Fixed html output of figures ## ## Revision 1.375 2003/05/08 18:42:52 gawthrop ## Generate pdf from ps (using hyperref package for links etc) ## ## Revision 1.374 2003/04/17 20:57:27 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.377 2003/06/11 15:48:02 gawthrop ## Copies (aliased) subsystems first. ## Include switches in .ps file names. ## ## Revision 1.376 2003/05/09 09:46:35 gawthrop ## Fixed html output of figures ## ## Revision 1.375 2003/05/08 18:42:52 gawthrop ## Generate pdf from ps (using hyperref package for links etc) ## ## Revision 1.374 2003/04/17 20:57:27 geraint |
︙ | ︙ | |||
2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 | ifeq ($target,$1_numpar.txt) mtt_update $1 numpar update else mtt_update $1 numpar endif #SUMMARY state numerical state declaration -- default (txt) $1_state.txt : $1_struc.txt $1_sympar.txt $1_def.r ifeq ($target,$1_state.txt) mtt_update $1 state update else mtt_update $1 state endif #SUMMARY input numerical state declaration -- default (txt) | > > > > > | 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 | ifeq ($target,$1_numpar.txt) mtt_update $1 numpar update else mtt_update $1 numpar endif #SUMMARY state numerical state declaration -- default (txt) ifeq ($steadystate_computation,yes) $1_state.txt : $1_struc.txt $1_sympar.txt $1_def.r $1_ss.r else $1_state.txt : $1_struc.txt $1_sympar.txt $1_def.r endif ifeq ($target,$1_state.txt) mtt_update $1 state update else mtt_update $1 state endif #SUMMARY input numerical state declaration -- default (txt) |
︙ | ︙ |