klayout/testdata/drc/drcSimpleTests_90.drc

35 lines
883 B
Plaintext
Raw Normal View History

2024-01-24 19:02:44 +01:00
source $drc_test_source
target $drc_test_target
if $drc_test_deep
deep
end
l1 = input(1, 0)
l1_raw = input(1, 0).raw
l2 = input(2, 0)
l1.output(1, 0)
l2.output(2, 0)
l1.width(600.nm).output(100, 0)
l1.width(600.nm, without_touching).output(101, 0)
l1.width(600.nm, without_coincident).output(102, 0)
l1.space(600.nm).output(200, 0)
l1.space(600.nm, without_touching).output(201, 0)
l1.space(600.nm, without_coincident).output(202, 0)
l1_raw.space(600.nm).output(210, 0)
l1_raw.space(600.nm, without_touching).output(211, 0)
l1_raw.space(600.nm, without_coincident).output(212, 0)
l1.sep(l2, 600.nm).output(300, 0)
l1.sep(l2, 600.nm, without_touching).output(301, 0)
l1.sep(l2, 600.nm, without_coincident).output(302, 0)
l1.drc(space < 600.nm).output(400, 0)
l1.drc(space(without_touching) < 600.nm).output(401, 0)
l1.drc(space(without_coincident) < 600.nm).output(402, 0)