Overview
| Comment: | Ports now written in cmp file. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
6a05ee009530b5f96753b96287f61275 |
| User & Date: | gawthrop@users.sourceforge.net on 1997-03-19 09:49:39.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1997-03-19
| ||
| 09:50:24 | Now creates the sabg (stripped abg) file. check-in: dcf99ace40 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 09:49:39 | Ports now written in cmp file. check-in: 6a05ee0095 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 09:42:08 |
Now writes out the following additional fig files: _head.fig The fig header _bnd.fig The bonds actually used _cmp.fig The components actually used. check-in: 5043b0c6cc user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/awk/rbg_fig2m.awk
from [b7db84c7aa]
to [c50df9036d].
| ︙ | ︙ | |||
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.17 1997/01/02 11:21:17 peterg # Now assumes all components bonds etc at depth zero in fig file. # Ie anything at depth>0 is ignored. # Thanks to Donald for suggesting this. # ## Revision 1.16 1996/12/30 20:00:29 peterg ## Fixed bent-bond bug. | > > > > > > | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ # Revision 1.18 1997/03/19 09:42:08 peterg # Now writes out the following additional fig files: # _head.fig The fig header # _bnd.fig The bonds actually used # _cmp.fig The components actually used. # # Revision 1.17 1997/01/02 11:21:17 peterg # Now assumes all components bonds etc at depth zero in fig file. # Ie anything at depth>0 is ignored. # Thanks to Donald for suggesting this. # ## Revision 1.16 1996/12/30 20:00:29 peterg ## Fixed bent-bond bug. |
| ︙ | ︙ | |||
384 385 386 387 388 389 390 |
printf field_1 >> bnd_file
for (i=2; i<=NF; i++)
printf(" %s", $i) >> bnd_file;
printf("\n") >> bnd_file
}
| | | | 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 |
printf field_1 >> bnd_file
for (i=2; i<=NF; i++)
printf(" %s", $i) >> bnd_file;
printf("\n") >> bnd_file
}
# Components & ports
if ( isa_component||isa_port ) {
for (i=1; i<=NF; i++)
printf(" %s", $i) >> cmp_file;
printf("\n") >> cmp_file
}
}
function process_fig() {
|
| ︙ | ︙ |