add Pattern.find_toplevel()

Topological sort for lists of Pattern objects, useful for finding top
cell of gds
lethe/HEAD
Jan Petykiewicz 4 years ago
parent 9f27a5093a
commit e684bd0e40

@ -2,7 +2,7 @@
Base object for containing a lithography mask. Base object for containing a lithography mask.
""" """
from typing import List, Callable, Tuple, Dict, Union from typing import List, Callable, Tuple, Dict, Union, Set
import copy import copy
import itertools import itertools
import pickle import pickle
@ -824,3 +824,35 @@ class Pattern:
if not overdraw: if not overdraw:
pyplot.show() pyplot.show()
@staticmethod
def find_toplevel(patterns: List['Pattern']) -> List['Pattern']:
"""
Given a list of Pattern objects, return those that are not referenced by
any other pattern.
Args:
patterns: A list of patterns to filter.
Returns:
A filtered list in which no pattern is referenced by any other pattern.
"""
def get_children(pat: Pattern, memo: Set) -> Set:
if pat in memo:
return memo
children = set(sp.pattern for sp in pat.subpatterns)
new_children = children - memo
memo |= children
for child_pat in new_children:
memo |= get_children(child_pat, memo)
return memo
patterns = set(patterns)
not_toplevel = set()
for pattern in patterns:
not_toplevel |= get_children(pattern, not_toplevel)
toplevel = list(patterns - not_toplevel)
return toplevel

Loading…
Cancel
Save