We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 501a101 commit 7c7c983Copy full SHA for 7c7c983
1 file changed
TraceTheory/TraceTheory/RegularExpressions.lean
@@ -9,6 +9,8 @@ namespace RegularExpression
9
10
variable {α : Type*} {I : Independence α}
11
12
+/-- A regular language is star-connected if the Kleene star is
13
+ used over connected languages only. -/
14
def IsStarConnected (I : Independence α) : RegularExpression α → Prop
15
| zero => True
16
| epsilon => True
@@ -58,9 +60,4 @@ theorem traceMatches_toTrace (P : RegularExpression α) :
58
60
unfold traceMatches matches'
59
61
rw [toTrace_kstar_comm, ih]
62
--- @[simp]
--- theorem traceMatches_toTrace_dist (P Q : RegularExpression α) :
63
--- toTrace I (P.matches' + Q.matches') = toTrace I P.matches' ∪ toTrace I Q.matches' := by
64
--- apply Set.image_union
65
-
66
end RegularExpression
0 commit comments