Sta::delaysInvalid
This commit is contained in:
parent
7ef710054b
commit
f3d987b4f8
|
|
@ -2532,6 +2532,13 @@ Sta::reportClkSkew(ClockSet *clks,
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
void
|
||||||
|
Sta::delaysInvalid()
|
||||||
|
{
|
||||||
|
graph_delay_calc_->delaysInvalid();
|
||||||
|
search_->arrivalsInvalid();
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
Sta::arrivalsInvalid()
|
Sta::arrivalsInvalid()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -894,6 +894,8 @@ public:
|
||||||
// If full=false update arrivals incrementally.
|
// If full=false update arrivals incrementally.
|
||||||
// If full=true update all arrivals from scratch.
|
// If full=true update all arrivals from scratch.
|
||||||
void updateTiming(bool full);
|
void updateTiming(bool full);
|
||||||
|
// Invalidate all delay calculations. Arrivals also invalidated.
|
||||||
|
void delaysInvalid();
|
||||||
// Invalidate all arrival and required times.
|
// Invalidate all arrival and required times.
|
||||||
void arrivalsInvalid();
|
void arrivalsInvalid();
|
||||||
void setPathMinMax(const MinMaxAll *min_max) __attribute__ ((deprecated));
|
void setPathMinMax(const MinMaxAll *min_max) __attribute__ ((deprecated));
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue