def
definition
def or abbrev
isWaterFalsified
show as:
view Lean formalization →
formal statement (Lean)
196def isWaterFalsified (baseline : WaterMeasurement) (intention : WaterMeasurement) : Prop :=
proof body
Definition body.
197 -- Falsified if: τ_gate outside (60, 70) ps OR no change
198 |baseline.tau_gate - 65| > 10 ∨
199 |intention.tau_gate - baseline.tau_gate| < 1 -- Less than 1 ps change
200
201/-! ## Unified Falsification Framework -/
202
203/-- Master falsification structure tracking all predictions -/