File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -350,7 +350,7 @@ class CtsOptions : public odb::dbBlockCallBackObj
350350 std::string dummyload_prefix_ = " clkload" ;
351351 MasterCount dummy_count_;
352352 bool repairClockNets_ = false ;
353- NdrStrategy ndrStrategy_ = NdrStrategy::NONE ;
353+ NdrStrategy ndrStrategy_ = NdrStrategy::HALF ;
354354};
355355
356356} // namespace cts
Original file line number Diff line number Diff line change @@ -1582,7 +1582,7 @@ std::vector<int> TritonCTS::getAllClockTreeLevels(Clock& clockNet)
15821582 std::set<int > uniqueLevels;
15831583
15841584 clockNet.forEachSubNet ([&](ClockSubNet& subNet) {
1585- if (!subNet.isLeafLevel ()) {
1585+ if (!subNet.isLeafLevel () && subNet. getTreeLevel () != - 1 ) {
15861586 uniqueLevels.insert (subNet.getTreeLevel ());
15871587 }
15881588 });
You can’t perform that action at this time.
0 commit comments