From: ajreynol Date: Wed, 2 Nov 2016 20:02:07 +0000 (-0500) Subject: Add missing regression. X-Git-Tag: cvc5-1.0.0~6007 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f1427165156dff24d7b8ca0690088e4182ccdbd4;p=cvc5.git Add missing regression. --- diff --git a/test/regress/regress0/sep/finite-witness-sat.smt2 b/test/regress/regress0/sep/finite-witness-sat.smt2 new file mode 100644 index 000000000..93413d950 --- /dev/null +++ b/test/regress/regress0/sep/finite-witness-sat.smt2 @@ -0,0 +1,11 @@ +; COMMAND-LINE: --finite-model-find --quant-epr --no-check-models +; EXPECT: sat +(set-logic ALL_SUPPORTED) +(declare-sort Loc 0) +(declare-const l Loc) + +(assert (not (emp l))) +(assert (forall ((x Loc) (y Loc)) (not (pto x y)))) + + +(check-sat)