mirror of
https://github.com/Z3Prover/z3
synced 2025-04-05 17:14:07 +00:00
enable nlsat solver call from nla
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
6b433b54e2
commit
a14c2a3051
|
@ -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 (false && ret == l_undef) { // disable the call to nlsat
|
||||
if (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