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

disable new nlsat connection from master until debugged

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-05-12 09:38:17 -07:00
parent 2953d3ed30
commit bea0d45e6a

View file

@ -34,7 +34,7 @@ lbool solver::run_nra(lp::explanation & expl) {
lbool solver::check(vector<lemma>& l, lp::explanation& expl) {
set_use_nra_model(false);
lbool ret = m_core->check(l);
if (ret == l_undef) { // disable the call to nlsat
if (false && ret == l_undef) { // disable the call to nlsat
ret = run_nra(expl);
if (ret == l_true || expl.size() > 0) {
set_use_nra_model(true);