mirror of
https://github.com/Z3Prover/z3
synced 2025-04-05 17:14:07 +00:00
disable the call to nlsat from nla_solver
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
3e4a4c6df2
commit
6b433b54e2
|
@ -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) {
|
||||
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