3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-12 02:04:43 +00:00

disable expensive model validation

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-08-26 07:26:12 -03:00
parent f048cb27ba
commit 271cd2ac6b
4 changed files with 3 additions and 2 deletions

View file

@ -3342,6 +3342,7 @@ namespace smt {
for (theory* t : m_theory_set) {
t->validate_model(*m_model);
}
#if 0
for (literal lit : m_assigned_literals) {
if (!is_relevant(lit)) continue;
expr* v = m_bool_var2expr[lit.var()];
@ -3364,6 +3365,7 @@ namespace smt {
IF_VERBOSE(10, display_clause_smt2(verbose_stream() << "not satisfied:\n", *cls) << "\n");
}
}
#endif
}
return r;
}