mirror of
https://github.com/KLayout/klayout.git
synced 2026-08-30 01:39:30 +02:00
- Detects recursive subcircuit calls now - Dismisses empty top level circuit which happened to be created when there were not top level elements and control statements were present (such as .param)
15 lines
122 B
Plaintext
15 lines
122 B
Plaintext
* Testing recursive call detection
|
|
|
|
.subckt c1 a b
|
|
x1 a b c2
|
|
.end
|
|
|
|
.subckt c2 a b
|
|
x1 a b c1
|
|
.ends
|
|
|
|
xtop vdd vss c2
|
|
|
|
.end
|
|
|