We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following method only seems to verify if I use --useOldAxiomatization:
--useOldAxiomatization
method lemmaUniquenessPrefix(s1: Seq[Bool], s2: Seq[Bool], prefix: Seq[Bool]) ensures (s1 == s2) == (prefix ++ s1 == prefix ++ s2) { var s3: Seq[Bool] var s4: Seq[Bool] if (|s1| == |s2|) { s3 := prefix ++ s1 s4 := prefix ++ s2 inhale (forall y: Int :: { s1[y] } 0 <= y && y < |s1| ==> (s1[y] == s2[y]) == (s3[|prefix| + y] == s4[|prefix| + y])) } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following method only seems to verify if I use
--useOldAxiomatization
:The text was updated successfully, but these errors were encountered: