pith. machine review for the scientific record. sign in
structure definition def or abbrev

LockPhasePrediction

show as:
view Lean formalization →

No prose has been written for this declaration yet. The Lean source and graph data below render without it.

generate prose now

formal statement (Lean)

 100structure LockPhasePrediction (Event : Type*) where
 101  /-- Metric for structural change. -/
 102  structuralChange : Event → ℝ
 103  /-- LOCK phases have higher structural change. -/
 104  lock_higher : ∀ (trace : TickedTrace Event) (i j : Fin trace.events.length),
 105    (trace.phase i).isLock → (trace.phase j).isBalance →
 106    structuralChange (trace.events[i]) ≥ structuralChange (trace.events[j])
 107
 108/-! ## Falsification Interface -/
 109
 110/-- A falsification witness: a trace where 8-tick doesn't work. -/

depends on (13)

Lean names referenced from this declaration's body.