mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-06 03:05:31 -05:00
14 lines
225 B
Text
14 lines
225 B
Text
|
|
(declare-sort U 0)
|
|
(declare-fun p () Bool)
|
|
(declare-fun q () Bool)
|
|
(declare-fun a () U)
|
|
(declare-fun b () U)
|
|
(assert
|
|
(and
|
|
(= p (= a b))
|
|
(= q (= b a))
|
|
(or (not p) (not q))
|
|
(or p q)))
|
|
(check-sat)
|
|
; :status unsat
|