3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-01-18 16:28:56 +00:00

make calling nra from nla optional

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2020-05-15 12:16:40 -07:00
parent 08940cff8f
commit 82fd2a062d
4 changed files with 9 additions and 4 deletions

View file

@ -1474,10 +1474,8 @@ lbool core::check(vector<lemma>& l_vec) {
m_tangents.tangent_lemma();
}
#if 0
if (false && l_vec.empty() && !done())
if (l_vec.empty() && !done() && m_nla_settings.run_nra())
ret = m_nra.check();
#endif
if (ret == l_undef && !l_vec.empty() && m_reslim.inc())
ret = l_false;