Made a simple but important change to "readspice.tcl" to unexpand
the cell being reworked for port numbering. Otherwise *all* labels are selected, which can take a very long time depending on how many labels are in the layout. Note: Need a "select area ports" function, and better yet, rework the whole label database so that magic no longer has to run compute-intensive routines like DBEraseLabelsByContent().
This commit is contained in:
parent
a8c3117020
commit
5e5879c53d
|
|
@ -133,7 +133,9 @@ proc readspice {netfile} {
|
|||
|
||||
# Get the complete set of labels in the top cell and make a list
|
||||
select top cell
|
||||
unexpand
|
||||
select area labels
|
||||
expand
|
||||
set all [lindex [what -list] 1]
|
||||
select clear
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue