3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-23 11:37:54 +00:00

debugging

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2024-01-01 19:10:11 -08:00
parent 141ba7661f
commit adebd2fd94
3 changed files with 5 additions and 5 deletions

View file

@ -69,7 +69,9 @@ namespace polysat {
}
lbool umul_ovfl_constraint::eval(assignment const& a) const {
return eval(a.apply_to(p()), a.apply_to(q()));
auto r = eval(a.apply_to(p()), a.apply_to(q()));
CTRACE("bv", r != l_undef, tout << "eval: " << *this << " := " << r << "\n";);
return r;
}
void umul_ovfl_constraint::activate(core& c, bool sign, dependency const& dep) {