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 <[email protected]>
  • Loading branch information
stefan-aws and RustanLeino authored Jan 3, 2024
1 parent 62227be commit edd1018
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 @@ -177,7 +177,9 @@ module Languages {
requires Bisimilar(L1, L2)
ensures Bisimilar(Star(L1), Star(L2))
{
forall k ensures Bisimilar#[k](Star(L1), Star(L2)) {
forall k: nat
ensures Bisimilar#[k](Star(L1), Star(L2))
{
if k != 0 {
var k' :| k' + 1 == k;
StarCongruenceHelper(k', L1, L2);
Expand Down

0 comments on commit edd1018

Please sign in to comment.