Added a "-full" switch to the scripted "lvs" command that switches

to the old symmetry breaking method (see previous commit message).
This commit is contained in:
Tim Edwards 2020-10-08 09:57:01 -04:00
parent 5e99fd5ef9
commit d2c356f9e2
1 changed files with 3 additions and 0 deletions

View File

@ -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
}
}