Open muchang opened 4 years ago
We should enable --nl-cad
by default:
$ time bin/cvc4 cur.smt2
sat
sat
unknown
real 0m1,038s
user 0m1,026s
sys 0m0,012s
$ time bin/cvc4 --nl-cad cur.smt2
sat
sat
sat
real 0m1,031s
user 0m1,023s
sys 0m0,008s
$ time bin/cvc4 --no-nl-ext --nl-cad cur.smt2
sat
sat
sat
real 0m0,139s
user 0m0,123s
sys 0m0,016s
Hi, for these formulas, CVC4 reports unknown or hangs on the last formula. If we change (set-logic ALL) to (set-logic QF_NRA), cvc4 answers sat immediately.
Commit: 13cf418