3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-24 01:01:19 +00:00

#6364 proviso for ignore int

This commit is contained in:
Nikolaj Bjorner 2022-10-24 00:48:57 -07:00
parent 5c7eaec566
commit a24b5a64e1
2 changed files with 3 additions and 1 deletions

View file

@ -320,6 +320,8 @@ namespace euf {
void solver::validate_model(model& mdl) {
if (!m_unhandled_functions.empty())
return;
if (get_config().m_arith_ignore_int)
return;
for (auto* s : m_solvers)
if (s && s->has_unhandled())
return;