pith. machine review for the scientific record. sign in
structure

Params

definition
show as:
view math explainer →
module
IndisputableMonolith.Relativity.ILG.Params
domain
Relativity
line
8 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Relativity.ILG.Params on GitHub at line 8.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

used by

formal source

   5namespace ILG
   6
   7/-- Minimal parameter record used by downstream modules. -/
   8structure Params where
   9  alpha : ℝ := 1
  10  Clag  : ℝ := 0
  11
  12structure ParamProps (P : Params) : Prop :=
  13  (alpha_nonneg : 0 ≤ P.alpha)
  14  (Clag_nonneg : 0 ≤ P.Clag)
  15
  16end ILG
  17end Relativity
  18end IndisputableMonolith