@@ -1543,7 +1543,7 @@ void ClusteringEngine::mergeChildrenBelowThresholds(
15431543 int num_small_children = static_cast <int >(small_children.size ());
15441544 while (true ) {
15451545 clearConnections ();
1546- buildNetlistConnections ();
1546+ buildNetListConnections ();
15471547
15481548 std::vector<int > cluster_class (num_small_children, -1 ); // merge flag
15491549 std::vector<int > small_children_ids; // store cluster id
@@ -1694,7 +1694,7 @@ bool ClusteringEngine::attemptMerge(Cluster* receiver, Cluster* incomer)
16941694void ClusteringEngine::rebuildConnections ()
16951695{
16961696 clearConnections ();
1697- buildNetlistConnections ();
1697+ buildNetListConnections ();
16981698 buildDataFlowConnections ();
16991699}
17001700
@@ -1705,7 +1705,7 @@ void ClusteringEngine::clearConnections()
17051705 }
17061706}
17071707
1708- void ClusteringEngine::buildNetlistConnections ()
1708+ void ClusteringEngine::buildNetListConnections ()
17091709{
17101710 for (odb::dbNet* net : block_->getNets ()) {
17111711 if (!isValidNet (net)) {
@@ -1838,7 +1838,7 @@ void ClusteringEngine::breakMixedLeaf(Cluster* mixed_leaf)
18381838 createOneClusterForEachMacro (parent, hard_macros, macro_clusters);
18391839
18401840 clearConnections ();
1841- buildNetlistConnections ();
1841+ buildNetListConnections ();
18421842
18431843 const int number_of_macros = static_cast <int >(hard_macros.size ());
18441844 std::vector<int > size_class (number_of_macros, -1 );
0 commit comments