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:
parent
2953d3ed30
commit
bea0d45e6a
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue