Allow processing of cellnames with $. #102
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
klayout handles duplicate in memory cells by adding
$xxas a suffix.netgen was using a regular expression
^$cell$to match cells and the$in the cellname was causing a not found error.By changing the search from
-regexto-match, cellnames with$can be used.I don't think LVS was ever intended to be run on with cellnames specified by wildcards, was it? Will changing to
-exactcause a problem?Also added information to the line displayed when a cell is not found to make what was searched for more obvious.