Overview
Comment: | Added `unknown' to list od names to avoid |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
c50c69217a5514e29c7c3b73455ea0b6 |
User & Date: | gawthrop@users.sourceforge.net on 1998-05-13 12:39:23 |
Other Links: | branch diff | manifest | tags |
Context
1998-05-13
| ||
16:42:03 | Fixed various bugs etc. check-in: 2e5d817f6d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
12:39:23 | Added `unknown' to list od names to avoid check-in: c50c69217a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
08:57:27 | Now uses simpar.h in place of odes.h check-in: e0bc2bb7bc user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/awk/lbl2sympar.awk from [e7f507c111] to [47f497662c].
︙ | ︙ | |||
8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.9 1998/02/16 16:09:57 peterg ## And taken it out again! ## ## Revision 1.8 1998/02/16 12:08:38 peterg ## Put back the matrix declaration ## # Revision 1.7 1997/03/18 17:25:24 peterg | > > > | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.10 1998/03/26 13:03:23 peterg ## Changed SS field fudge. ## ## Revision 1.9 1998/02/16 16:09:57 peterg ## And taken it out again! ## ## Revision 1.8 1998/02/16 12:08:38 peterg ## Put back the matrix declaration ## # Revision 1.7 1997/03/18 17:25:24 peterg |
︙ | ︙ | |||
60 61 62 63 64 65 66 | } BEGIN { sys_name = ARGV[1]; comment = "%"; arg_delimiter = ","; | | | 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | } BEGIN { sys_name = ARGV[1]; comment = "%"; arg_delimiter = ","; not_an_arg = "effort flow state internal external zero unknown 0 1"; SS_parameter = "internal external zero 0 1"; numeric = "[0-9-]"; symbol_count = 0; symbols = ""; } { if ( (match($1,comment)==0) && (NF>=3) ) { |
︙ | ︙ |