Skip to content

Commit

Permalink
Update assets/src/semantics-of-regular-expressions/Languages.dfy
Browse files Browse the repository at this point in the history
Co-authored-by: Rustan Leino <leino@amazon.com>
  • Loading branch information
stefan-aws and RustanLeino authored Jan 3, 2024
1 parent 927cbbb commit 62227be
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion assets/src/semantics-of-regular-expressions/Languages.dfy
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,9 @@ module Languages {
if k != 0 {
BisimilarCuttingPrefixesPointwise(k, a, L1, L2);
var k' :| k == k' + 1;
forall n: nat ensures n <= k' + 1 ==> Bisimilar#[n](Star(L1), Star(L2)) {
forall n: nat
ensures n <= k' + 1 ==> Bisimilar#[n](Star(L1), Star(L2))
{
if 0 < n <= k' + 1 {
var n' :| n == n' + 1;
StarCongruenceHelper(n', L1,L2);
Expand Down

0 comments on commit 62227be

Please sign in to comment.