Skip to content

Commit 3ce0778

Browse files
committed
Minor improvements
1 parent beea7c1 commit 3ce0778

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/occsimplifier.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ void OccSimplifier::extend_model(SolutionExtender* extender)
252252
}
253253
extender->dummyBlocked(blockedOn.var());
254254
}
255-
if (solver->conf.verbosity >= 2) {
255+
if (solver->conf.verbosity >= 2 && blockedClauses.size() > 0) {
256256
cout << "c [extend] Extended " << blockedClauses.size() << " var-elim clauses" << endl;
257257
}
258258
}

src/solver.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3230,4 +3230,5 @@ const Lit lit, const double weight
32303230
exit(-1);
32313231
}
32323232
varData[lit.var()].weight = weight;
3233+
verb_print(2, "lit " << lit << " weight set to: " << weight);
32333234
}

0 commit comments

Comments
 (0)