We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 472e198 commit 69bafbcCopy full SHA for 69bafbc
DynamoDbEncryption/dafny/StructuredEncryption/src/Canonize.dfy
@@ -667,7 +667,7 @@ module {:options "/functionSyntax:4" } Canonize {
667
forall i | 0 <= i < |input| ensures exists x :: x in origData && Updated2(x, input[i], DoDecrypt) {
668
var x :| x in origData && Updated2(x, input[i], DoDecrypt);
669
}
670
- assert forall i | 0 <= i < |input| :: exists 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);
671
672
673
// command line tools that say /vcsSplitOnEveryAssert fail without the {:vcs_split_on_every_assert false}
0 commit comments