@@ -60,6 +60,7 @@ using utl::UniquePtrWithDeleter;
6060// a forward one to get at this function without angering
6161// gcc.
6262namespace abc {
63+ // NOLINTBEGIN(readability-identifier-naming)
6364extern Abc_Ntk_t* Abc_NtkMulti (Abc_Ntk_t* pNtk,
6465 int nThresh,
6566 int nFaninMax,
@@ -68,6 +69,7 @@ extern Abc_Ntk_t* Abc_NtkMulti(Abc_Ntk_t* pNtk,
6869 int fSimple ,
6970 int fFactor );
7071extern void Abc_FrameSetLibGen (void * pLib);
72+ // NOLINTEND(readability-identifier-naming)
7173} // namespace abc
7274
7375namespace cgt {
@@ -270,7 +272,7 @@ static std::vector<sta::Net*> downstreamNets(sta::dbSta* const sta,
270272 bool searchTo (const sta::Vertex* const to_vertex,
271273 const sta::Mode* mode) const final
272274 {
273- return visited_ .find (to_vertex) == visited_ .end ();
275+ return visited .find (to_vertex) == visited .end ();
274276 }
275277 bool searchThru (sta::Edge* edge, const sta::Mode* mode) const override
276278 {
@@ -280,7 +282,7 @@ static std::vector<sta::Net*> downstreamNets(sta::dbSta* const sta,
280282 && role->genericRole () != sta::TimingRole::latchDtoQ ();
281283 }
282284
283- std::unordered_set<const sta::Vertex*> visited_ ;
285+ std::unordered_set<const sta::Vertex*> visited ;
284286 };
285287
286288 auto network = sta->getDbNetwork ();
@@ -305,7 +307,7 @@ static std::vector<sta::Net*> downstreamNets(sta::dbSta* const sta,
305307 visited_nets.insert (net);
306308 nets.push_back (net);
307309 }
308- pred.visited_ .insert (vertex);
310+ pred.visited .insert (vertex);
309311 iter.enqueueAdjacentVertices (vertex);
310312 }
311313 }
@@ -323,7 +325,7 @@ static std::vector<sta::Net*> upstreamNets(sta::dbSta* const sta,
323325 bool searchFrom (const sta::Vertex* const from_vertex,
324326 const sta::Mode* mode) const final
325327 {
326- return visited_ .find (from_vertex) == visited_ .end ();
328+ return visited .find (from_vertex) == visited .end ();
327329 }
328330 bool searchTo (const sta::Vertex* const to_vertex,
329331 const sta::Mode* mode) const final
@@ -338,7 +340,7 @@ static std::vector<sta::Net*> upstreamNets(sta::dbSta* const sta,
338340 && role->genericRole () != sta::TimingRole::latchDtoQ ();
339341 }
340342
341- std::unordered_set<const sta::Vertex*> visited_ ;
343+ std::unordered_set<const sta::Vertex*> visited ;
342344 };
343345
344346 auto network = sta->getDbNetwork ();
@@ -364,7 +366,7 @@ static std::vector<sta::Net*> upstreamNets(sta::dbSta* const sta,
364366 visited_nets.insert (net);
365367 nets.push_back (net);
366368 }
367- pred.visited_ .insert (vertex);
369+ pred.visited .insert (vertex);
368370 iter.enqueueAdjacentVertices (vertex);
369371 }
370372 }
0 commit comments