hush on the S and C word

This commit is contained in:
James Cherry 2020-05-14 18:05:17 -07:00
parent fdb9ad44ab
commit 316e8990ed
3 changed files with 5 additions and 8 deletions

View File

@ -48,7 +48,7 @@ app
Main program definition.
tcl
User interface code.
SDC (Synopsys Design Constraint) argument parsing.
SDC argument parsing.
Each sub-directory builds a library that is linked to build the STA
executable or linked into another application.

View File

@ -168,8 +168,7 @@ ReduceToPi::reducePiDfs(const Pin *drvr_pin,
if (parasitics_->isResistor(device)
&& !isLoopResistor(device)) {
ParasiticNode *onode = parasitics_->otherNode(device, node);
// Cadence Fire&Ice likes to create resistors with identical
// from/to nodes.
// One commercial extractor creates resistors with identical from/to nodes.
if (onode != node
&& device != from_res) {
if (isVisited(onode)) {
@ -572,8 +571,7 @@ ReduceToPiPoleResidue2::findBranchCurrents(const Pin *drvr_pin,
ParasiticDevice *device = device_iter->next();
if (parasitics_->isResistor(device)) {
ParasiticNode *onode = parasitics_->otherNode(device, node);
// Cadence Fire&Ice likes to create resistors with identical
// from/to nodes.
// One commercial extractor creates resistors with identical from/to nodes.
if (onode != node
&& device != from_res
&& !isVisited(onode)
@ -613,8 +611,7 @@ ReduceToPiPoleResidue2::findMoments(const Pin *drvr_pin,
ParasiticDevice *device = device_iter->next();
if (parasitics_->isResistor(device)) {
ParasiticNode *onode = parasitics_->otherNode(device, node);
// Cadence Fire&Ice likes to create resistors with identical
// from/to nodes.
// One commercial extractor creates resistors with identical from/to nodes.
if (onode != node
&& device != from_res
&& !isVisited(onode)

View File

@ -200,7 +200,7 @@ define_cmd_args "set_units" \
# Note that the set_units command does NOT actually set the units.
# It merely checks that the current units are the same as the
# units in the set_units command. Blame SNPS for this brain damage.
# units in the set_units command.
proc set_units { args } {
parse_key_args "set_units" args \
keys {-capacitance -resistance -time -voltage -current -power -distance} \