Sta::worstSlack
Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
parent
489ffac144
commit
f586c53935
|
|
@ -956,6 +956,7 @@ public:
|
||||||
const MinMax *min_max);
|
const MinMax *min_max);
|
||||||
// Worst endpoint slack and vertex.
|
// Worst endpoint slack and vertex.
|
||||||
// Incrementally updated.
|
// Incrementally updated.
|
||||||
|
Slack worstSlack(const MinMax *min_max);
|
||||||
void worstSlack(const MinMax *min_max,
|
void worstSlack(const MinMax *min_max,
|
||||||
// Return values.
|
// Return values.
|
||||||
Slack &worst_slack,
|
Slack &worst_slack,
|
||||||
|
|
|
||||||
|
|
@ -3206,6 +3206,16 @@ Sta::totalNegativeSlack(const Corner *corner,
|
||||||
return search_->totalNegativeSlack(corner, min_max);
|
return search_->totalNegativeSlack(corner, min_max);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Slack
|
||||||
|
Sta::worstSlack(const MinMax *min_max)
|
||||||
|
{
|
||||||
|
searchPreamble();
|
||||||
|
Slack worst_slack;
|
||||||
|
Vertex *worst_vertex;
|
||||||
|
search_->worstSlack(min_max, worst_slack, worst_vertex);
|
||||||
|
return worst_slack;
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
Sta::worstSlack(const MinMax *min_max,
|
Sta::worstSlack(const MinMax *min_max,
|
||||||
// Return values.
|
// Return values.
|
||||||
|
|
@ -3213,7 +3223,7 @@ Sta::worstSlack(const MinMax *min_max,
|
||||||
Vertex *&worst_vertex)
|
Vertex *&worst_vertex)
|
||||||
{
|
{
|
||||||
searchPreamble();
|
searchPreamble();
|
||||||
return search_->worstSlack(min_max, worst_slack, worst_vertex);
|
search_->worstSlack(min_max, worst_slack, worst_vertex);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue