Changed the behavior of "extract" routine extFindNodes() to not

check for abstract views to determine how to handle the substrate
node.  Running tests to check if this has any negative impact on
the extraction of abstract views that do not specify substrate
and well types.
This commit is contained in:
Tim Edwards 2022-02-17 11:27:43 -05:00
parent 31639f61fc
commit 2e99d0cff7
2 changed files with 8 additions and 2 deletions

View File

@ -1 +1 @@
8.3.268
8.3.269

View File

@ -3692,7 +3692,13 @@ extFindNodes(def, clipArea, subonly)
temp_subsnode = (NodeRegion *)NULL; // Reset for new search
isabstract = FALSE;
DBPropGet(def, "LEFview", &isabstract);
// NOTE: Commented out 12/17/2022. This does not produce the intended
// result when an abstract view contains well and substrate types.
// Not sure if commenting it out produces the intended result when an
// abstract view does NOT contain will and substrate types, though.
/* DBPropGet(def, "LEFview", &isabstract); */
if (!isabstract)
{
/* First pass: Find substrate. Collect all tiles belonging */