mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-06 03:05:31 -05:00
8 lines
140 B
Text
8 lines
140 B
Text
|
|
(set-info :status unsat)
|
|
(declare-datatypes ((nat 0)) (((Z) (S (pred nat)))))
|
|
(declare-const n nat)
|
|
|
|
(assert (= n (S (S n))))
|
|
|
|
(check-sat)
|