}
Notice() << "SmtEngine::checkUnsatCore(): result is " << r << endl;
if(r.asSatisfiabilityResult().isUnknown()) {
- InternalError()
- << "SmtEngine::checkUnsatCore(): could not check core result unknown.";
+ Warning()
+ << "SmtEngine::checkUnsatCore(): could not check core result unknown."
+ << std::endl;
}
-
- if(r.asSatisfiabilityResult().isSat()) {
+ else if (r.asSatisfiabilityResult().isSat())
+ {
InternalError()
<< "SmtEngine::checkUnsatCore(): produced core was satisfiable.";
}
set(regress_0_tests
regress0/arith/ackermann.real.smt2
regress0/arith/arith-eq.smt2
+ regress0/arith/arith-mixed-types-no-tighten.smt2
+ regress0/arith/arith-mixed-types-tighten.smt2
regress0/arith/arith-mixed.smt2
- regress0/arith/arith-tighten-1.smt2
regress0/arith/arith-strict.smt2
- regress0/arith/arith-mixed-types-tighten.smt2
- regress0/arith/arith-mixed-types-no-tighten.smt2
+ regress0/arith/arith-tighten-1.smt2
regress0/arith/arith.01.cvc
regress0/arith/arith.02.cvc
regress0/arith/arith.03.cvc
regress0/arith/issue1399.smt2
regress0/arith/issue3412.smt2
regress0/arith/issue3413.smt2
+ regress0/arith/issue3480.smt2
regress0/arith/issue3683.smt2
regress0/arith/ite-lift.smt2
regress0/arith/leq.01.smtv1.smt2
regress0/quantifiers/issue2031-bv-var-elim.smt2
regress0/quantifiers/issue2033-macro-arith.smt2
regress0/quantifiers/issue2035.smt2
+ regress0/quantifiers/issue3655.smt2
regress0/quantifiers/lra-triv-gn.smt2
regress0/quantifiers/macros-int-real.smt2
regress0/quantifiers/macros-real-arg.smt2
--- /dev/null
+; COMMAND-LINE: --quiet
+(declare-sort A 0)
+(declare-fun e (A) A)
+(declare-fun c (A A) A)
+(declare-fun h (A A) A)
+(declare-fun b (A) Bool)
+(declare-fun d (A) Bool)
+(assert (let ((a!1 (forall ((f A) (i A)) (distinct (h f i) (e (c f i))))))
+ (not a!1)))
+(assert (let ((a!1 (forall ((j A)) (or (not (b j)) (d (e j))))))
+ (and a!1 (forall ((i A)) (b i)) (forall ((g A)) (not (b g))))))
+(set-info :status unsat)
+(check-sat)