We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15ab968 commit af9ff0dCopy full SHA for af9ff0d
1 file changed
src/mpl/src/clusterEngine.cpp
@@ -1978,14 +1978,14 @@ void ClusteringEngine::breakMixedLeaves(
1978
// A1 A2 A3
1979
void ClusteringEngine::breakMixedLeaf(Cluster* mixed_leaf)
1980
{
1981
- Cluster* parent = mixed_leaf;
+ Cluster* parent = mixed_leaf->getParent();
1982
const float macro_dominated_cluster_ratio = 0.01;
1983
1984
// Split by replacement if macro dominated.
1985
- if (mixed_leaf->getNumStdCell() * macro_dominated_cluster_ratio
1986
- < mixed_leaf->getNumMacro()) {
1987
- parent = mixed_leaf->getParent();
1988
- }
+ //if (mixed_leaf->getNumStdCell() * macro_dominated_cluster_ratio
+ // < mixed_leaf->getNumMacro()) {
+ // parent = mixed_leaf->getParent();
+ //}
1989
1990
mapMacroInCluster2HardMacro(mixed_leaf);
1991
0 commit comments