mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-06 03:05:31 -05:00
test: proper smtlib for QFUF problems
This commit is contained in:
parent
5e380464ce
commit
c5f23e32b9
2 changed files with 9 additions and 0 deletions
|
|
@ -1,2 +1,6 @@
|
|||
(declare-sort $i 0)
|
||||
(declare-fun a () $i)
|
||||
(declare-fun b () $i)
|
||||
(declare-fun c () $i)
|
||||
(assert (and (= a b) (= b c)))
|
||||
(check-sat)
|
||||
|
|
|
|||
|
|
@ -1,2 +1,7 @@
|
|||
(declare-sort $i 0)
|
||||
(declare-fun a () $i)
|
||||
(declare-fun b () $i)
|
||||
(declare-fun c () $i)
|
||||
(declare-fun d () $i)
|
||||
(assert (and (= a b) (= b c) (or (not (= a c)) (= a d))))
|
||||
(check-sat)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue