GraphDelayCalc::isIdealClk
This commit is contained in:
parent
78f650cf64
commit
5de34e3bbe
|
|
@ -116,6 +116,12 @@ GraphDelayCalc::ceff(Edge *,
|
||||||
return 0.0;
|
return 0.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool
|
||||||
|
GraphDelayCalc::isIdealClk(const Vertex *vertex)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
GraphDelayCalc::minPulseWidth(const Pin *pin,
|
GraphDelayCalc::minPulseWidth(const Pin *pin,
|
||||||
const RiseFall *hi_low,
|
const RiseFall *hi_low,
|
||||||
|
|
|
||||||
|
|
@ -101,7 +101,7 @@ public:
|
||||||
virtual float ceff(Edge *edge,
|
virtual float ceff(Edge *edge,
|
||||||
TimingArc *arc,
|
TimingArc *arc,
|
||||||
const DcalcAnalysisPt *dcalc_ap);
|
const DcalcAnalysisPt *dcalc_ap);
|
||||||
virtual bool isIdealClk(const Vertex *vertex) = 0;
|
virtual bool isIdealClk(const Vertex *vertex);
|
||||||
// Precedence:
|
// Precedence:
|
||||||
// SDF annotation
|
// SDF annotation
|
||||||
// Liberty library
|
// Liberty library
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue