mirror of https://github.com/KLayout/klayout.git
Added missing file.
This commit is contained in:
parent
8b29b30ff9
commit
1b450c6499
|
|
@ -0,0 +1,54 @@
|
|||
|
||||
# Hierarchical antenna check
|
||||
|
||||
source($drc_test_source, "TOP")
|
||||
target($drc_test_target)
|
||||
|
||||
# Flat mode
|
||||
|
||||
flat_labels = labels(1, 0)
|
||||
flat_all = input(1, 0)
|
||||
flat_poly = polygons(1, 0)
|
||||
|
||||
flat_texts_from_labels1 = flat_labels.texts("XYZ", false)
|
||||
flat_texts_from_labels2 = flat_labels.texts("*", true)
|
||||
flat_texts_from_all1 = flat_all.texts("XYZ", false)
|
||||
flat_texts_from_all2 = flat_all.texts("*", true)
|
||||
flat_texts_from_poly1 = flat_poly.texts("XYZ", false)
|
||||
flat_texts_from_poly2 = flat_poly.texts("*", true)
|
||||
|
||||
flat_labels.output(100, 0)
|
||||
flat_all.output(101, 0)
|
||||
flat_poly.output(102, 0)
|
||||
flat_texts_from_labels1.output(110, 0)
|
||||
flat_texts_from_labels2.output(111, 0)
|
||||
flat_texts_from_all1.output(112, 0)
|
||||
flat_texts_from_all2.output(113, 0)
|
||||
flat_texts_from_poly1.output(114, 0)
|
||||
flat_texts_from_poly2.output(115, 0)
|
||||
|
||||
# Deep mode
|
||||
|
||||
deep
|
||||
|
||||
deep_labels = labels(1, 0)
|
||||
deep_all = input(1, 0)
|
||||
deep_poly = polygons(1, 0)
|
||||
|
||||
deep_texts_from_labels1 = deep_labels.texts("XYZ", false)
|
||||
deep_texts_from_labels2 = deep_labels.texts("*", true)
|
||||
deep_texts_from_all1 = deep_all.texts("XYZ", false)
|
||||
deep_texts_from_all2 = deep_all.texts("*", true)
|
||||
deep_texts_from_poly1 = deep_poly.texts("XYZ", false)
|
||||
deep_texts_from_poly2 = deep_poly.texts("*", true)
|
||||
|
||||
deep_labels.output(200, 0)
|
||||
deep_all.output(201, 0)
|
||||
deep_poly.output(202, 0)
|
||||
deep_texts_from_labels1.output(210, 0)
|
||||
deep_texts_from_labels2.output(211, 0)
|
||||
deep_texts_from_all1.output(212, 0)
|
||||
deep_texts_from_all2.output(213, 0)
|
||||
deep_texts_from_poly1.output(214, 0)
|
||||
deep_texts_from_poly2.output(215, 0)
|
||||
|
||||
Loading…
Reference in New Issue