From d9c09dcdf94411b70bc23f817b67bf526a17724b Mon Sep 17 00:00:00 2001 From: Nikolaj Bjorner Date: Wed, 11 Mar 2020 11:46:54 -0700 Subject: [PATCH] disable extra model validation Signed-off-by: Nikolaj Bjorner --- src/smt/smt_context.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/smt/smt_context.cpp b/src/smt/smt_context.cpp index 512d4bbe5..286141e20 100644 --- a/src/smt/smt_context.cpp +++ b/src/smt/smt_context.cpp @@ -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()];