3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

add missing expr

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2024-04-17 15:16:11 +02:00
parent 2682c2ef2b
commit 0368b52716
2 changed files with 2 additions and 1 deletions

View file

@ -327,7 +327,7 @@ namespace euf {
out << mdl << "\n";
}
void solver::validate_model(model& mdl) {
void solver::validate_model(model& mdl) {
if (!m_unhandled_functions.empty())
return;
if (get_config().m_arith_ignore_int)

View file

@ -726,6 +726,7 @@ namespace intblast {
r = a.mk_le(smod(bv_expr, 0), smod(bv_expr, 1));
break;
case OP_SGEQ:
bv_expr = e->get_arg(0);
r = a.mk_ge(smod(bv_expr, 0), smod(bv_expr, 1));
break;
case OP_SLT: