Skip to content

Commit

Permalink
when loop=0 bm can run
Browse files Browse the repository at this point in the history
  • Loading branch information
l2280212 committed Jan 15, 2024
1 parent e919567 commit 3eda9c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ private boolean checkOperationProportion() {
minOps++;
}
}
if (minOps > config.getLOOP()) {
if (config.getLOOP()!=0 && minOps > config.getLOOP()) {
LOGGER.error("Loop is too small that can't meet the need of OPERATION_PROPORTION");
return false;
}
Expand Down

0 comments on commit 3eda9c9

Please sign in to comment.