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
The extended cfold tactic on the bdep branch appears too eager in carrying out its work. A faulty example is the following:
module M = {
proc f(): int = {
var t, x, y;
x <- 1;
y <- 0;
t <- 2;
(* 1 0 2 *)
x <- y;
y <- t;
t <- 3;
(* 0 2 3 *)
return x;
}
}.
hoare f_h:
M.f: true ==> res = 0.
proof.
proc.
(* auto => />. (*This works as expected*) *)
cfold 1; auto => />. (* but not this one! *)
The text was updated successfully, but these errors were encountered:
The extended
cfold
tactic on thebdep
branch appears too eager in carrying out its work. A faulty example is the following:The text was updated successfully, but these errors were encountered: