Add missing regression.
authorajreynol <andrew.j.reynolds@gmail.com>
Wed, 2 Nov 2016 20:02:07 +0000 (15:02 -0500)
committerajreynol <andrew.j.reynolds@gmail.com>
Wed, 2 Nov 2016 20:02:07 +0000 (15:02 -0500)
test/regress/regress0/sep/finite-witness-sat.smt2 [new file with mode: 0644]

diff --git a/test/regress/regress0/sep/finite-witness-sat.smt2 b/test/regress/regress0/sep/finite-witness-sat.smt2
new file mode 100644 (file)
index 0000000..93413d9
--- /dev/null
@@ -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)