Skip to content

Commit 39e886e

Browse files
committed
Remove redundant condition
Signed-off-by: Ryszard Rozak <[email protected]>
1 parent 3474f90 commit 39e886e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rmp/src/annealing_strategy.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ void AnnealingStrategy::OptimizeDesign(sta::dbSta* sta,
393393
worse_iters = 0;
394394
}
395395

396-
if (i > 0 && (i + 1) % 10 == 0) {
396+
if ((i + 1) % 10 == 0) {
397397
logger->info(RMP,
398398
54,
399399
"Iteration: {}, temperature: {}, best worst slack: {}",

0 commit comments

Comments
 (0)