From 316e8990ed3edd970fe37e0bbe755e82232c84be Mon Sep 17 00:00:00 2001 From: James Cherry Date: Thu, 14 May 2020 18:05:17 -0700 Subject: [PATCH] hush on the S and C word --- doc/StaApi.txt | 2 +- parasitics/ReduceParasitics.cc | 9 +++------ tcl/Sdc.tcl | 2 +- 3 files changed, 5 insertions(+), 8 deletions(-) diff --git a/doc/StaApi.txt b/doc/StaApi.txt index e19fc420..f05ac251 100644 --- a/doc/StaApi.txt +++ b/doc/StaApi.txt @@ -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. diff --git a/parasitics/ReduceParasitics.cc b/parasitics/ReduceParasitics.cc index c1e5014d..551cfc4b 100644 --- a/parasitics/ReduceParasitics.cc +++ b/parasitics/ReduceParasitics.cc @@ -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) diff --git a/tcl/Sdc.tcl b/tcl/Sdc.tcl index d46d911a..8ead4e8c 100644 --- a/tcl/Sdc.tcl +++ b/tcl/Sdc.tcl @@ -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} \