mirror of
https://github.com/The-OpenROAD-Project/OpenSTA.git
synced 2026-05-30 00:24:12 +08:00
Latest pulled in changes on 4/20 from upstream to push all together with latest from 4/16
Signed-off-by: dsengupta0628 <dsengupta@precisioninno.com>
This commit is contained in:
@@ -975,7 +975,10 @@ ConcreteParasitics::piModel(const Parasitic *parasitic,
|
||||
float &c1) const
|
||||
{
|
||||
const ConcreteParasitic *cparasitic = static_cast<const ConcreteParasitic*>(parasitic);
|
||||
cparasitic->piModel(c2, rpi, c1);
|
||||
if (cparasitic->isPiModel())
|
||||
cparasitic->piModel(c2, rpi, c1);
|
||||
else
|
||||
criticalError(2700, "piModel called on non-PiElmore parasitic.");
|
||||
}
|
||||
|
||||
void
|
||||
@@ -985,7 +988,10 @@ ConcreteParasitics::setPiModel(Parasitic *parasitic,
|
||||
float c1)
|
||||
{
|
||||
ConcreteParasitic *cparasitic = static_cast<ConcreteParasitic*>(parasitic);
|
||||
cparasitic->setPiModel(c2, rpi, c1);
|
||||
if (cparasitic->isPiModel())
|
||||
cparasitic->setPiModel(c2, rpi, c1);
|
||||
else
|
||||
criticalError(2701, "setPiModel called on non-PiElmore parasitic.");
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////
|
||||
|
||||
@@ -22,8 +22,6 @@
|
||||
//
|
||||
// This notice may not be removed or altered from any source distribution.
|
||||
|
||||
%module parasitics
|
||||
|
||||
%{
|
||||
#include "Sta.hh"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user