mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 04:03:39 +00:00
add missing expr
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
2682c2ef2b
commit
0368b52716
|
@ -327,7 +327,7 @@ namespace euf {
|
||||||
out << mdl << "\n";
|
out << mdl << "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
void solver::validate_model(model& mdl) {
|
void solver::validate_model(model& mdl) {
|
||||||
if (!m_unhandled_functions.empty())
|
if (!m_unhandled_functions.empty())
|
||||||
return;
|
return;
|
||||||
if (get_config().m_arith_ignore_int)
|
if (get_config().m_arith_ignore_int)
|
||||||
|
|
|
@ -726,6 +726,7 @@ namespace intblast {
|
||||||
r = a.mk_le(smod(bv_expr, 0), smod(bv_expr, 1));
|
r = a.mk_le(smod(bv_expr, 0), smod(bv_expr, 1));
|
||||||
break;
|
break;
|
||||||
case OP_SGEQ:
|
case OP_SGEQ:
|
||||||
|
bv_expr = e->get_arg(0);
|
||||||
r = a.mk_ge(smod(bv_expr, 0), smod(bv_expr, 1));
|
r = a.mk_ge(smod(bv_expr, 0), smod(bv_expr, 1));
|
||||||
break;
|
break;
|
||||||
case OP_SLT:
|
case OP_SLT:
|
||||||
|
|
Loading…
Reference in a new issue