mirror of
https://github.com/Z3Prover/z3
synced 2025-06-13 01:16:15 +00:00
Add few more testcases
This commit is contained in:
parent
300e99b67a
commit
4b29b208ad
5 changed files with 433 additions and 0 deletions
17
examples/python/data/horn3.smt2
Normal file
17
examples/python/data/horn3.smt2
Normal file
|
@ -0,0 +1,17 @@
|
|||
(declare-rel Invariant (Bool))
|
||||
(declare-rel Goal ())
|
||||
(declare-var l0 Bool)
|
||||
(declare-var l2 Bool)
|
||||
(declare-var l4 Bool)
|
||||
(declare-var l6 Bool)
|
||||
(declare-var l8 Bool)
|
||||
(declare-var l10 Bool)
|
||||
(rule (=> (not (or l4)) (Invariant l4)))
|
||||
(rule (=> (and (Invariant l4)
|
||||
(= (and (not l4) (not l2)) l6)
|
||||
(= (and l4 l2) l8)
|
||||
(= (and (not l8) (not l6)) l10)
|
||||
) (Invariant l10)))
|
||||
(rule (=> (and (Invariant l4)
|
||||
l4) Goal))
|
||||
(query Goal)
|
Loading…
Add table
Add a link
Reference in a new issue