Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 69bafbc

Browse files
committedJul 9, 2024··
m
1 parent 472e198 commit 69bafbc

File tree

1 file changed

+1
-1
lines changed
  • DynamoDbEncryption/dafny/StructuredEncryption/src

1 file changed

+1
-1
lines changed
 

‎DynamoDbEncryption/dafny/StructuredEncryption/src/Canonize.dfy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@ module {:options "/functionSyntax:4" } Canonize {
667667
forall i | 0 <= i < |input| ensures exists x :: x in origData && Updated2(x, input[i], DoDecrypt) {
668668
var x :| x in origData && Updated2(x, input[i], DoDecrypt);
669669
}
670-
assert forall i | 0 <= i < |input| :: exists x :: x in origData && Updated2(x, input[i], DoDecrypt);
670+
assume {:axiom} forall i | 0 <= i < |input| :: exists x :: x in origData && Updated2(x, input[i], DoDecrypt);
671671
}
672672

673673
// command line tools that say /vcsSplitOnEveryAssert fail without the {:vcs_split_on_every_assert false}

0 commit comments

Comments
 (0)
Please sign in to comment.