blob: ec1d95179977323c959ea8bc8b882b83e9a1f7b1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
function {:existential true} {:inline} b1(x: bool, y: bool) : bool
{
(y || x) && (!x || !y)
}
function {:existential true} {:absdomain "Intervals"} {:inline} b3(x: int) : bool
{
x >= 0 && x <= 0
}
Boogie program verifier finished with 1 verified, 0 errors
|