WIP: refactoring - separated pins of net into outgoing and subcircuit.

This commit is contained in:
Matthias Koefferlein
2019-01-06 12:53:22 +01:00
parent 261b14a260
commit eb435d5d85
7 changed files with 342 additions and 162 deletions
+1 -1
View File
@@ -144,7 +144,7 @@ static void dump_recursive_nets_to_layout (const db::LayoutToNetlist &l2n, db::L
for (db::Circuit::const_net_iterator n = c->begin_nets (); n != c->end_nets (); ++n) {
// only handle nets without outgoing pins - these are local
if (c->is_external_net (n.operator-> ())) {
if (n->pin_count () > 0) {
continue;
}