We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The goal of this issue is to track the examples present in NaginiBench that are not yet verified in RustBench
There are currently four examples which I wasn't able to verify:
Barrier
==>
13: result ==> forall|k: int, l: int| 0 <= k <= p && p < l < arr.len() ==> arr[k] < arr[l] 21: forall|k: int| 0 <= k < i ==> arr[max as int] >= arr[k],
Recursive binary search
Mcontaied
Maximum segment sum
The text was updated successfully, but these errors were encountered:
Also:
Sorry, something went wrong.
No branches or pull requests
The goal of this issue is to track the examples present in NaginiBench that are not yet verified in RustBench
There are currently four examples which I wasn't able to verify:
Barrier
: replacing==>
with an equality causes the example to fail to verifyRecursive binary search
: fails due to not being able to verify terminationMcontaied
fails due to the postcondition not being satisfied (maybe a bug in my code?)Maximum segment sum
: I don't know how to write a spec sum function (asked in Zulip), integer overflows are possible (not that hard to fix probably)The text was updated successfully, but these errors were encountered: