mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-05 19:00:33 -05:00
8 lines
203 B
Text
8 lines
203 B
Text
(declare-sort U 0)
|
|
(declare-fun a () U)
|
|
(declare-fun b () U)
|
|
(declare-fun c () U)
|
|
(declare-fun d () U)
|
|
(assert (and (= a b) (= b c) (= c d) (or (not (= a c)) (not (= a a)))))
|
|
(check-sat)
|
|
; :status unsat
|