Skip to content

Commit

Permalink
m
Browse files Browse the repository at this point in the history
  • Loading branch information
ajewellamz committed Jul 9, 2024
1 parent 69bafbc commit 7ba8315
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -663,10 +663,10 @@ module {:options "/functionSyntax:4" } Canonize {
requires forall val <- input :: exists x :: x in origData && Updated2(x, val, DoDecrypt)
ensures forall i | 0 <= i < |input| :: exists x :: x in origData && Updated2(x, input[i], DoDecrypt)
{
assert forall i | 0 <= i < |input| :: input[i] in input;
forall i | 0 <= i < |input| ensures exists x :: x in origData && Updated2(x, input[i], DoDecrypt) {
var x :| x in origData && Updated2(x, input[i], DoDecrypt);
}
// assert forall i | 0 <= i < |input| :: input[i] in input;
// forall i | 0 <= i < |input| ensures exists x :: x in origData && Updated2(x, input[i], DoDecrypt) {
// var x :| x in origData && Updated2(x, input[i], DoDecrypt);
// }
assume {:axiom} forall i | 0 <= i < |input| :: exists x :: x in origData && Updated2(x, input[i], DoDecrypt);
}

Expand Down

0 comments on commit 7ba8315

Please sign in to comment.