Skip to content

Commit f71ed76

Browse files
committed
mpl: fix lower case
Signed-off-by: Arthur Koucher <[email protected]>
1 parent 943aa2e commit f71ed76

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/mpl/src/clusterEngine.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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)
16941694
void 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);

src/mpl/src/clusterEngine.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ class ClusteringEngine
225225
std::vector<int>& virtual_conn_clusters);
226226

227227
void clearConnections();
228-
void buildNetlistConnections();
228+
void buildNetListConnections();
229229
void buildDataFlowConnections();
230230

231231
// Methods for data flow

0 commit comments

Comments
 (0)