mirror of
https://github.com/Z3Prover/z3
synced 2025-08-23 11:37:54 +00:00
bugfixes
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
1a742ff784
commit
b706434282
7 changed files with 70 additions and 39 deletions
|
@ -69,9 +69,7 @@ namespace polysat {
|
|||
}
|
||||
|
||||
lbool umul_ovfl_constraint::eval(assignment const& a) const {
|
||||
auto r = eval(a.apply_to(p()), a.apply_to(q()));
|
||||
CTRACE("bv", r != l_undef, tout << "eval: " << *this << " := " << r << "\n";);
|
||||
return r;
|
||||
return eval(a.apply_to(p()), a.apply_to(q()));
|
||||
}
|
||||
|
||||
void umul_ovfl_constraint::activate(core& c, bool sign, dependency const& dep) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue