mirror of
https://github.com/The-OpenROAD-Project/OpenSTA.git
synced 2026-08-31 18:14:47 +02:00
ArrivalVisitor::srch_adj_ -> search_adj_
Signed-off-by: James Cherry <[email protected]>
This commit is contained in:
@@ -809,7 +809,7 @@ protected:
|
||||
bool clks_only_;
|
||||
TagGroupBldr *tag_bldr_;
|
||||
TagGroupBldr *tag_bldr_no_crpr_;
|
||||
SearchPred *srch_adj_;
|
||||
SearchPred *search_adj_;
|
||||
bool crpr_active_;
|
||||
bool has_fanin_one_;
|
||||
};
|
||||
|
||||
+4
-4
@@ -1092,7 +1092,7 @@ ArrivalVisitor::init0()
|
||||
{
|
||||
tag_bldr_ = new TagGroupBldr(true, this);
|
||||
tag_bldr_no_crpr_ = new TagGroupBldr(false, this);
|
||||
srch_adj_ = new SearchAdjLoop(this);
|
||||
search_adj_ = new SearchAdjLoop(this);
|
||||
}
|
||||
|
||||
void
|
||||
@@ -1116,14 +1116,14 @@ void
|
||||
ArrivalVisitor::copyState(const StaState *sta)
|
||||
{
|
||||
StaState::copyState(sta);
|
||||
srch_adj_->copyState(sta);
|
||||
search_adj_->copyState(sta);
|
||||
}
|
||||
|
||||
ArrivalVisitor::~ArrivalVisitor()
|
||||
{
|
||||
delete tag_bldr_;
|
||||
delete tag_bldr_no_crpr_;
|
||||
delete srch_adj_;
|
||||
delete search_adj_;
|
||||
}
|
||||
|
||||
void
|
||||
@@ -1178,7 +1178,7 @@ ArrivalVisitor::visit(Vertex *vertex,
|
||||
search_->postponeClkFanouts(vertex);
|
||||
}
|
||||
else {
|
||||
graph_->visitFanoutEdges(vertex, srch_adj_,
|
||||
graph_->visitFanoutEdges(vertex, search_adj_,
|
||||
[this] (Edge *edge,
|
||||
Vertex *fanout) {
|
||||
if (edge->isDisabledLoop()) {
|
||||
|
||||
Reference in New Issue
Block a user