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

Params

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

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.ILG.Params on GitHub at line 7.

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

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