mirror of
https://github.com/The-OpenROAD-Project/OpenSTA.git
synced 2026-05-30 00:24:12 +08:00
hush on the S and C word
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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} \
|
||||
|
||||
Reference in New Issue
Block a user