structure
definition
def or abbrev
Schedule
show as:
view Lean formalization →
formal statement (Lean)
202structure Schedule (E : Type _) where
203 order : List E
204 nodup : order.Pairwise (· ≠ ·)
205
206namespace Schedule
207
208variable [DecidableEq E]
209
210/-- Event at a given tick (index into the order), if any. -/