summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sep/pto-02.smt2
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress0/sep/pto-02.smt2')
-rw-r--r--test/regress/regress0/sep/pto-02.smt225
1 files changed, 25 insertions, 0 deletions
diff --git a/test/regress/regress0/sep/pto-02.smt2 b/test/regress/regress0/sep/pto-02.smt2
new file mode 100644
index 000000000..f0b6d2dee
--- /dev/null
+++ b/test/regress/regress0/sep/pto-02.smt2
@@ -0,0 +1,25 @@
+(set-logic ALL_SUPPORTED)
+(set-info :status unsat)
+
+
+(declare-const x Int)
+
+(declare-const a1 Int)
+(declare-const a2 Int)
+(declare-const a3 Int)
+(declare-const a4 Int)
+(declare-const a5 Int)
+(declare-const a6 Int)
+(declare-const a7 Int)
+(declare-const a8 Int)
+(declare-const a9 Int)
+
+(assert (and (pto x a1) (pto x a2) (pto x a3)
+ (pto x a4) (pto x a5) (pto x a6)
+ (pto x a7) (pto x a8) (pto x a9)
+ )
+)
+
+(assert (not (= a1 a2 a3 a4 a5 a6 a7 a8 a9)))
+
+(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback