You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
methodFoo() {
assertAck(4, 3) == 1;
}
functionAck(m: nat, n: nat): nat
{
if m == 0 then
n + 1
elseif n == 0 thenAck(m - 1, 1)
elseAck(m - 1, Ack(m, n - 1))
}
After verification times out, there is still a z3 process running, until you make an edit to the program. It would be better if the z3 process was terminated immediately after verification finished.
The text was updated successfully, but these errors were encountered:
Verify
Foo
in the following program:After verification times out, there is still a z3 process running, until you make an edit to the program. It would be better if the z3 process was terminated immediately after verification finished.
The text was updated successfully, but these errors were encountered: