Sta::delaysInvalid

This commit is contained in:
James Cherry 2019-11-30 10:27:41 -08:00
parent 7ef710054b
commit f3d987b4f8
2 changed files with 9 additions and 0 deletions

View File

@ -2532,6 +2532,13 @@ Sta::reportClkSkew(ClockSet *clks,
//////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////
void
Sta::delaysInvalid()
{
graph_delay_calc_->delaysInvalid();
search_->arrivalsInvalid();
}
void void
Sta::arrivalsInvalid() Sta::arrivalsInvalid()
{ {

View File

@ -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));