Test enhancement.

This commit is contained in:
Matthias Koefferlein 2021-01-10 20:19:02 +01:00
parent 383f72eb09
commit 04e11eea31
1 changed files with 4 additions and 4 deletions

View File

@ -19,12 +19,12 @@ l3.output(3, 0)
l1.drc(length > 5.0).output(100, 0)
l1.drc(2.0 < length <= 5.0).output(101, 0)
l1.drc(length <= 2.0).output(102, 0)
l1.drc(length == 2.0).output(103, 0)
l1.drc(primary.edges.length <= 2.0).output(102, 0)
l1.drc(primary.length == 2.0).output(103, 0)
l1.drc(angle == 0.0).output(110, 0)
l1.drc(angle < 0.0).output(111, 0)
l1.drc(angle > 0.0).output(112, 0)
l1.drc(angle == 90).output(113, 0)
l1.drc(primary.angle > 0.0).output(112, 0)
l1.drc(primary.edges.angle == 90).output(113, 0)
l1.drc((angle == 0.0) + (angle == 90)).output(114, 0)