Files
klayout/testdata/lvs/stray_texts1.lvs
T
Matthias Koefferlein 0c52934100 Trying a solution for issue #1719, part 2
The solution is to drop clusters that have no area
and not connections downward. This implies, we cannot
connect from upward to such clusters - i.e. we cannot
force a pin inside a subcircuit with a plain text. We
need some polygon at least. This is not a problem as
texts were not enough so far anyway.
2024-05-26 15:17:58 +02:00

29 lines
450 B
Plaintext

$lvs_test_source && source($lvs_test_source)
if $lvs_test_target_l2n
report_netlist($lvs_test_target_l2n)
else
report_netlist
end
writer = write_spice(true, false)
$lvs_test_target_cir && target_netlist($lvs_test_target_cir, writer, "Extracted by KLayout")
deep
# separate labels and polygons
l1l = labels(1, 0)
l1 = polygons(1, 0)
l2 = input(2, 0)
connect(l1l, l1)
connect(l1l, l2)
connect(l1, l2)
connect_implicit("*", "*")
netlist