3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

disable extra model validation

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-03-11 11:46:54 -07:00
parent 36cddd0c46
commit d9c09dcdf9

View file

@ -3369,7 +3369,7 @@ namespace smt {
for (theory* t : m_theory_set) {
t->validate_model(*mdl);
}
#if 1
#if 0
for (literal lit : m_assigned_literals) {
if (!is_relevant(lit)) continue;
expr* v = m_bool_var2expr[lit.var()];