Skip to content

Commit

Permalink
fix and archive
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-aws committed Jun 27, 2024
1 parent 3446489 commit 583106c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file not shown.
4 changes: 2 additions & 2 deletions assets/src/semantics-of-regular-expressions/Languages.dfy
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ module Languages5WithProof refines Languages5 {
}
}

lemma PlusCongruenceAlternative<A>(k: nat, L1a: Lang, L1b: Lang, L2a: Lang, L2b: Lang)
lemma PlusCongruenceAlternative<A(!new)>(k: nat, L1a: Lang, L1b: Lang, L2a: Lang, L2b: Lang)
requires Bisimilar#[k](L1a, L1b)
requires Bisimilar#[k](L2a, L2b)
ensures Bisimilar#[k](Plus(L1a, L2a), Plus(L1b, L2b))
Expand Down Expand Up @@ -182,7 +182,7 @@ module Languages6 {
import opened Languages4
import opened Languages5WithProof

greatest lemma BisimilarityIsTransitive<A>[nat](L1: Lang, L2: Lang, L3: Lang)
greatest lemma BisimilarityIsTransitive<A(!new)>[nat](L1: Lang, L2: Lang, L3: Lang)
requires Bisimilar(L1, L2) && Bisimilar(L2, L3)
ensures Bisimilar(L1, L3)
{}
Expand Down

0 comments on commit 583106c

Please sign in to comment.