Fixed #281 (proper reporting of width/space violations in the kissing-corner case)

This commit is contained in:
Matthias Koefferlein
2019-06-17 20:48:07 +02:00
parent f59e49d678
commit 2389d2b391
15 changed files with 205 additions and 6 deletions
+17
View File
@@ -0,0 +1,17 @@
source($drc_test_source)
target($drc_test_target, "TOP")
l1 = input(1, 0)
l2 = input(2, 0)
l3 = input(3, 0)
l1.output(1, 0)
l2.output(2, 0)
l3.output(3, 0)
l1.width(100.nm).output(100, 0)
l1.space(100.nm).output(101, 0)
l1.notch(100.nm).output(102, 0)
l2.separation(l3, 100.nm).output(103, 0)
l2.overlap(l3, 100.nm).output(104, 0)
+19
View File
@@ -0,0 +1,19 @@
source($drc_test_source)
target($drc_test_target, "TOP")
deep
l1 = input(1, 0)
l2 = input(2, 0)
l3 = input(3, 0)
l1.output(1, 0)
l2.output(2, 0)
l3.output(3, 0)
l1.width(100.nm).output(100, 0)
l1.space(100.nm).output(101, 0)
l1.notch(100.nm).output(102, 0)
l2.separation(l3, 100.nm).output(103, 0)
l2.overlap(l3, 100.nm).output(104, 0)
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.