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.
This adds the info of which cells are used by a design,
Ideally to be even more useful it should print how often each cell appears in the hierarchy,
to do this dumbly (and inefficiently) I could first rise in the hierarchy for the first cell with getParent then on the top node traverse all nodes. When a UsrType says it's a leaf -> ask it if it's a process, then ask it if it's a cell, ask it which cell of the list, and increment a counter. There might be a more efficient way.