@@ -61,7 +61,7 @@ void ConcreteSwapArithModules::replaceArithModules(const int path_count,
6161
6262 // Identify critical mod instances based on target, path_count and
6363 // slack_threshold
64- set<dbModInst*> arithInsts;
64+ std:: set<dbModInst*> arithInsts;
6565 findCriticalInstances (path_count, target, slack_threshold, arithInsts);
6666 if (arithInsts.empty ()) {
6767 return ;
@@ -75,7 +75,7 @@ void ConcreteSwapArithModules::findCriticalInstances(
7575 const int path_count,
7676 const std::string& target,
7777 const float slack_threshold,
78- set<dbModInst*>& insts)
78+ std:: set<dbModInst*>& insts)
7979{
8080 logger_->info (RSZ,
8181 152 ,
@@ -130,7 +130,7 @@ void ConcreteSwapArithModules::findCriticalInstances(
130130
131131void ConcreteSwapArithModules::collectArithInstsOnPath (
132132 const Path* path,
133- set<dbModInst*>& arithInsts)
133+ std:: set<dbModInst*>& arithInsts)
134134{
135135 PathExpanded expanded (path, sta_);
136136 if (expanded.size () > 1 ) {
@@ -224,8 +224,9 @@ bool ConcreteSwapArithModules::hasArithOperatorProperty(
224224 return false ;
225225}
226226
227- void ConcreteSwapArithModules::doSwapInstances (const set<dbModInst*>& insts,
228- const std::string& target)
227+ void ConcreteSwapArithModules::doSwapInstances (
228+ const std::set<dbModInst*>& insts,
229+ const std::string& target)
229230{
230231 int swapped_count = 0 ;
231232
0 commit comments