Overview
Comment: | Removed header stuff. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
b0ecb47dad4e3c4be24fb6eec3d4c3c3 |
User & Date: | gawthrop@users.sourceforge.net on 1996-08-30 18:45:32 |
Other Links: | branch diff | manifest | tags |
Context
1996-08-30
| ||
19:01:21 | Added headers to sympar file. check-in: 34c2cb4fec user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
18:45:32 | Removed header stuff. check-in: b0ecb47dad user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
18:38:57 | Initial revision check-in: cddf7c01dc user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/awk/lbl2sympar.awk from [312581adf0] to [45ed1bc1ef].
︙ | ︙ | |||
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.2 1996/08/30 09:35:10 peter ## Fixed problem with global variable in function. ## ## Revision 1.1 1996/08/24 13:34:48 peter ## Initial revision ## ############################################################### | > > > | 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.3 1996/08/30 10:30:54 peter ## Switched order of args in matches. ## ## Revision 1.2 1996/08/30 09:35:10 peter ## Fixed problem with global variable in function. ## ## Revision 1.1 1996/08/24 13:34:48 peter ## Initial revision ## ############################################################### |
︙ | ︙ | |||
61 62 63 64 65 66 67 | symbols = sprintf("%s %s", symbols, arg[i]); } } } } END { # print the _sympar file | | | 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | symbols = sprintf("%s %s", symbols, arg[i]); } } } } END { # print the _sympar file printf("MTTNVar := %1.0f;\n", symbol_count); if (symbol_count>0) { printf("MATRIX MTTVar(MTTNVar,1);\n"); split(symbols,symbol); for (i = 1; i <= symbol_count; i++) { printf("MTTVar(%1.0f,1) \t := %s;\n", i, symbol[i]); } } printf("END;\n\n"); } |