Simple change to "gds read" to print out a diagnostic message for
every 5000 uses read instead of 100; this significantly cuts down on the output.
This commit is contained in:
parent
e553bbb7c3
commit
08461c9384
|
|
@ -398,7 +398,7 @@ calmaParseStructure(filename)
|
|||
{
|
||||
if (SigInterruptPending)
|
||||
goto done;
|
||||
if (nsrefs > osrefs && (nsrefs % 100) == 0)
|
||||
if (nsrefs > osrefs && (nsrefs % 5000) == 0)
|
||||
TxPrintf(" %d uses\n", nsrefs);
|
||||
osrefs = nsrefs;
|
||||
calmaNonManhattan = 0;
|
||||
|
|
|
|||
Loading…
Reference in New Issue