summaryrefslogtreecommitdiff
path: root/test/regress/regress0/symmetric.smtv1.smt2
blob: 7186318782f01f7d6f98b8dabc43d5aaf1b7c6ac (plain)
1
2
3
4
5
6
7
8
9
10
(set-option :incremental false)
(set-info :status unsat)
(set-logic QF_UF)
(declare-sort U 0)
(declare-fun p (U U) Bool)
(declare-fun x () U)
(declare-fun y () U)
(assert (=> (p x y) (p y x)))
(assert (p x y))
(check-sat-assuming ( (not (p y x)) ))
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback