3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-05 23:05:46 +00:00

Reduce log output

This commit is contained in:
Jakob Rath 2022-09-23 16:04:51 +02:00
parent 8ed6938cbe
commit 0a0953ae78
4 changed files with 12 additions and 10 deletions

View file

@ -67,7 +67,7 @@ namespace polysat {
}
void bool_var_manager::eval(sat::literal lit, unsigned lvl) {
LOG("Eval literal " << lit << " @ " << lvl);
LOG_V("Eval literal " << lit << " @ " << lvl);
assign(kind_t::value_propagation, lit, lvl, nullptr);
SASSERT(is_value_propagation(lit));
}