Overview
Comment: | Make sure _def.r exists before creating _state.txt |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
1cdccb01f599ef3d45888090ce5c52b6 |
User & Date: | gawthrop@users.sourceforge.net on 2001-02-05 17:27:40 |
Other Links: | branch diff | manifest | tags |
Context
2001-02-06
| ||
04:39:08 | Added _standalone.exe representation. check-in: 27b6f4c694 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
2001-02-05
| ||
17:27:40 | Make sure _def.r exists before creating _state.txt check-in: 1cdccb01f5 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
17:19:52 |
Now gives unique names to the states of multiports. Second name onwards labeled with port number check-in: f8af93ae32 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [cdeb1b312a] to [e1551dcd34].
︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # Copyright (C) 2000 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.290 2000/12/05 09:59:37 peterg ## Generates $1_cr.h - allows inclusion of c functions for crs ## ## Revision 1.289 2000/12/05 09:01:52 peterg ## Changed == to = ## ## Revision 1.288 2000/12/01 17:59:01 peterg | > > > > | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | # Copyright (C) 2000 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.291 2000/12/27 14:50:40 peterg ## This is the first CVS version (4.9). ## Commented out code now deleted ## ## Revision 1.290 2000/12/05 09:59:37 peterg ## Generates $1_cr.h - allows inclusion of c functions for crs ## ## Revision 1.289 2000/12/05 09:01:52 peterg ## Changed == to = ## ## Revision 1.288 2000/12/01 17:59:01 peterg |
︙ | ︙ | |||
329 330 331 332 333 334 335 | ## Implicit integration now handles switches ## ## Revision 1.192 1998/09/29 20:09:46 peterg ## Fixed nyfr and nifr plotting bug ## ## Revision 1.191 1998/09/02 12:05:39 peterg ## Added INPUT to simpar | < | 333 334 335 336 337 338 339 340 341 342 343 344 345 346 | ## Implicit integration now handles switches ## ## Revision 1.192 1998/09/29 20:09:46 peterg ## Fixed nyfr and nifr plotting bug ## ## Revision 1.191 1998/09/02 12:05:39 peterg ## Added INPUT to simpar ## Revision 1.190 1998/09/02 11:48:51 peterg ## VERSION 3.2 (Swansea) ## abg data structure now uses explicti port and subsystem lists so that ## processing is in predetermined order. ## ## Revision 1.189 1998/08/31 10:49:15 peterg ## Minor changes to -abg operation |
︙ | ︙ | |||
2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 | mtt_update $1 numpar endif #SUMMARY state numerical state declaration -- default (txt) $1_state.txt : FORCE mtt -q $1 struc txt mtt -q $1 sympar txt ifeq ($target,$1_state.txt) mtt_update $1 state update else mtt_update $1 state endif | > | | 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 | mtt_update $1 numpar endif #SUMMARY state numerical state declaration -- default (txt) $1_state.txt : FORCE mtt -q $1 struc txt mtt -q $1 sympar txt mtt -q $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) $1_input.txt : FORCE mtt -q $1 struc txt mtt -q $1 sympar txt ifeq ($target,$1_input.txt) mtt_update $1 input update else mtt_update $1 input |
︙ | ︙ |