ArrivalVisitor::srch_adj_ -> search_adj_
Signed-off-by: James Cherry <cherry@CerezoBook.local>
This commit is contained in:
parent
0b938d71eb
commit
bfdd2be0ee
|
|
@ -809,7 +809,7 @@ protected:
|
||||||
bool clks_only_;
|
bool clks_only_;
|
||||||
TagGroupBldr *tag_bldr_;
|
TagGroupBldr *tag_bldr_;
|
||||||
TagGroupBldr *tag_bldr_no_crpr_;
|
TagGroupBldr *tag_bldr_no_crpr_;
|
||||||
SearchPred *srch_adj_;
|
SearchPred *search_adj_;
|
||||||
bool crpr_active_;
|
bool crpr_active_;
|
||||||
bool has_fanin_one_;
|
bool has_fanin_one_;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1092,7 +1092,7 @@ ArrivalVisitor::init0()
|
||||||
{
|
{
|
||||||
tag_bldr_ = new TagGroupBldr(true, this);
|
tag_bldr_ = new TagGroupBldr(true, this);
|
||||||
tag_bldr_no_crpr_ = new TagGroupBldr(false, this);
|
tag_bldr_no_crpr_ = new TagGroupBldr(false, this);
|
||||||
srch_adj_ = new SearchAdjLoop(this);
|
search_adj_ = new SearchAdjLoop(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
@ -1116,14 +1116,14 @@ void
|
||||||
ArrivalVisitor::copyState(const StaState *sta)
|
ArrivalVisitor::copyState(const StaState *sta)
|
||||||
{
|
{
|
||||||
StaState::copyState(sta);
|
StaState::copyState(sta);
|
||||||
srch_adj_->copyState(sta);
|
search_adj_->copyState(sta);
|
||||||
}
|
}
|
||||||
|
|
||||||
ArrivalVisitor::~ArrivalVisitor()
|
ArrivalVisitor::~ArrivalVisitor()
|
||||||
{
|
{
|
||||||
delete tag_bldr_;
|
delete tag_bldr_;
|
||||||
delete tag_bldr_no_crpr_;
|
delete tag_bldr_no_crpr_;
|
||||||
delete srch_adj_;
|
delete search_adj_;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
@ -1178,7 +1178,7 @@ ArrivalVisitor::visit(Vertex *vertex,
|
||||||
search_->postponeClkFanouts(vertex);
|
search_->postponeClkFanouts(vertex);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
graph_->visitFanoutEdges(vertex, srch_adj_,
|
graph_->visitFanoutEdges(vertex, search_adj_,
|
||||||
[this] (Edge *edge,
|
[this] (Edge *edge,
|
||||||
Vertex *fanout) {
|
Vertex *fanout) {
|
||||||
if (edge->isDisabledLoop()) {
|
if (edge->isDisabledLoop()) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue