mirror of
https://github.com/KLayout/klayout.git
synced 2026-08-29 01:14:35 +02:00
This was a problem with universal DRC which does not specifically set the merged status. Furthermore, the default for DeepRegion and DeepEdges was "false" already and now is aligned.
21 lines
359 B
Plaintext
21 lines
359 B
Plaintext
|
|
source $drc_test_source
|
|
target $drc_test_target
|
|
|
|
if $drc_test_deep
|
|
deep
|
|
end
|
|
|
|
licon = input(66, 44)
|
|
|
|
licon.output(66, 44)
|
|
|
|
licon_cluster = licon.sized(0.2).sized(-0.2)
|
|
|
|
single = licon_cluster.drc(secondary(licon).count == 1)
|
|
single.sized(0.1).output(100, 0)
|
|
|
|
single = licon_cluster.drc(if_any(secondary(licon).count == 1))
|
|
single.sized(0.1).output(101, 0)
|
|
|