我正在尝试使用 Dafny 证明以下程序的正确性/不正确性。
datatype List<T> = Nil | Cons(T, List)
function tail(l:List):List
{
match l
case Nil => Nil
case Cons(x,xs) => xs
}
method check(l:List)
{
assert(expr(l)!=2);
}
function expr(l : List):int
{
if(l == Nil) then 0
else if(tail(l)==Nil) then 1
else if(tail(tail(l)) == Nil) then 2
else 3
}
Dafny 成功地证明了断言是不正确的。然而,它没有给出断言失败的例子。Dafny 可以自己举一个这样的例子吗?