summaryrefslogtreecommitdiff
path: root/test/regress/regress0/fmf/fc-unsat-pent.smt2
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress0/fmf/fc-unsat-pent.smt2')
-rwxr-xr-xtest/regress/regress0/fmf/fc-unsat-pent.smt220
1 files changed, 20 insertions, 0 deletions
diff --git a/test/regress/regress0/fmf/fc-unsat-pent.smt2 b/test/regress/regress0/fmf/fc-unsat-pent.smt2
new file mode 100755
index 000000000..f1721cb04
--- /dev/null
+++ b/test/regress/regress0/fmf/fc-unsat-pent.smt2
@@ -0,0 +1,20 @@
+(set-logic QF_UFC)
+(set-info :status unsat)
+
+(declare-sort U 0)
+
+(declare-fun a () U)
+(declare-fun b () U)
+(declare-fun c () U)
+(declare-fun d () U)
+(declare-fun e () U)
+
+(assert (not (= a b)))
+(assert (not (= b c)))
+(assert (not (= c d)))
+(assert (not (= d e)))
+(assert (not (= e a)))
+
+(assert (fmf.card c 2))
+
+(check-sat) \ No newline at end of file
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback