From d2c356f9e21a4552be4088a50cec8adba2162757 Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Thu, 8 Oct 2020 09:57:01 -0400 Subject: [PATCH] Added a "-full" switch to the scripted "lvs" command that switches to the old symmetry breaking method (see previous commit message). --- tcltk/netgen.tcl.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tcltk/netgen.tcl.in b/tcltk/netgen.tcl.in index 431bcf1..8815656 100644 --- a/tcltk/netgen.tcl.in +++ b/tcltk/netgen.tcl.in @@ -382,6 +382,9 @@ proc netgen::lvs { name1 name2 {setupfile setup.tcl} {logfile comp.out} args} { } elseif {$arg == "-blackbox"} { puts stdout "Treating empty subcircuits as black-box cells" netgen::model blackbox on + } elseif {$arg == "-full"} { + puts stdout "Using full symmetry breaking method" + netgen::symmetry full } }