mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-05 19:00:33 -05:00
10 lines
185 B
Text
10 lines
185 B
Text
|
|
(declare-sort U 0)
|
|
(declare-fun f (Bool) U)
|
|
(declare-fun a () Bool)
|
|
(declare-fun b () Bool)
|
|
(declare-fun c () Bool)
|
|
(assert
|
|
(distinct (f a) (f b) (f c)))
|
|
(check-sat)
|
|
; :status unsat
|