mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-06 03:05:31 -05:00
8 lines
180 B
Text
8 lines
180 B
Text
|
|
(declare-sort U 0)
|
|
(declare-fun a () U)
|
|
(declare-fun b () U)
|
|
(declare-fun cond () Bool)
|
|
(declare-fun p (U) Bool)
|
|
(assert (and (= a b) (p a) (not (p (ite cond a b)))))
|
|
(check-sat)
|