3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-05 17:14:07 +00:00

comment out the call to nra_solver

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2020-05-15 11:26:40 -07:00
parent 9c9fe712ad
commit 08940cff8f
23 changed files with 2 additions and 1 deletions

0
configure vendored Executable file → Normal file
View file

0
contrib/ci/scripts/build_z3_cmake.sh Executable file → Normal file
View file

0
contrib/ci/scripts/install_deps_osx.sh Executable file → Normal file
View file

0
contrib/ci/scripts/test_z3_docs.sh Executable file → Normal file
View file

0
contrib/ci/scripts/test_z3_examples_cmake.sh Executable file → Normal file
View file

0
contrib/ci/scripts/test_z3_install_cmake.sh Executable file → Normal file
View file

0
contrib/ci/scripts/test_z3_system_tests.sh Executable file → Normal file
View file

0
contrib/ci/scripts/test_z3_unit_tests_cmake.sh Executable file → Normal file
View file

0
contrib/ci/scripts/travis_ci_entry_point.sh Executable file → Normal file
View file

0
contrib/ci/scripts/travis_ci_linux_entry_point.sh Executable file → Normal file
View file

0
contrib/ci/scripts/travis_ci_osx_entry_point.sh Executable file → Normal file
View file

0
contrib/cmake/bootstrap.py Executable file → Normal file
View file

0
scripts/build_libcxx_msan.sh Executable file → Normal file
View file

0
scripts/mk_consts_files.py Executable file → Normal file
View file

0
scripts/mk_def_file.py Executable file → Normal file
View file

0
scripts/mk_gparams_register_modules_cpp.py Executable file → Normal file
View file

0
scripts/mk_install_tactic_cpp.py Executable file → Normal file
View file

0
scripts/mk_mem_initializer_cpp.py Executable file → Normal file
View file

0
scripts/mk_pat_db.py Executable file → Normal file
View file

0
scripts/pyg2hpp.py Executable file → Normal file
View file

0
scripts/trackall.sh Executable file → Normal file
View file

0
scripts/update_api.py Executable file → Normal file
View file

View file

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