structure
definition
def or abbrev
CPTFalsifier
show as:
view Lean formalization →
formal statement (Lean)
249structure CPTFalsifier where
250 /-- The particle type. -/
251 particle : String
252 /-- Mass difference (should be 0). -/
253 massDiff : ℝ
254 /-- Lifetime difference (should be 0). -/
255 lifetimeDiff : ℝ
256 /-- Evidence of violation. -/
257 violation : massDiff ≠ 0 ∨ lifetimeDiff ≠ 0
258
259/-- Current experimental bounds (from PDG). -/