mirror of
https://github.com/Z3Prover/z3
synced 2025-04-07 18:05:21 +00:00
Bugfix for bvurem0 model evaluation (+1 rewriting step)
This commit is contained in:
parent
22cae143b1
commit
c8af48d7ef
|
@ -892,7 +892,7 @@ br_status bv_rewriter::mk_bv_urem_core(expr * arg1, expr * arg2, bool hi_div0, e
|
|||
if (r2.is_zero()) {
|
||||
if (!hi_div0) {
|
||||
result = m().mk_app(get_fid(), OP_BUREM0, arg1);
|
||||
return BR_DONE;
|
||||
return BR_REWRITE1;
|
||||
}
|
||||
else {
|
||||
// The "hardware interpretation" for (bvurem x 0) is x
|
||||
|
|
Loading…
Reference in a new issue