Skip to content

Commit

Permalink
Sta::makeCmdNetwork -> Sta::makeSdcNetwork
Browse files Browse the repository at this point in the history
  • Loading branch information
jjcherry56 committed Nov 3, 2019
1 parent 6ac93c8 commit 84c1373
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions search/Sta.cc
Original file line number Diff line number Diff line change
Expand Up @@ -289,9 +289,10 @@ Sta::makeComponents()
makeSim();
makeSearch();
makeLatches();
makeCmdNetwork();
makeSdcNetwork();
makeReportPath();
makePower();
setCmdNamespace(CmdNamespace::sdc);
updateComponentsState();

makeObservers();
Expand Down Expand Up @@ -421,11 +422,9 @@ Sta::makeLatches()
}

void
Sta::makeCmdNetwork()
Sta::makeSdcNetwork()
{
sdc_network_ = makeSdcNetwork(network_);
cmd_network_ = sdc_network_;
cmd_namespace_ = CmdNamespace::sdc;
sdc_network_ = sta::makeSdcNetwork(network_);
}

void
Expand Down
2 changes: 1 addition & 1 deletion search/Sta.hh
Original file line number Diff line number Diff line change
Expand Up @@ -1200,7 +1200,7 @@ protected:
virtual void makeDebug();
virtual void makeUnits();
virtual void makeNetwork();
virtual void makeCmdNetwork();
virtual void makeSdcNetwork();
virtual void makeSdc();
virtual void makeGraph();
virtual void makeCorners();
Expand Down

0 comments on commit 84c1373

Please sign in to comment.