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

Config

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)

  59structure Config where
  60  /-- Configuration value (positive real, generalizes bond multiplier) -/
  61  value : ℝ
  62  /-- Positivity constraint -/
  63  pos : 0 < value
  64  /-- Time coordinate (in ticks) -/
  65  time : ℕ
  66  /-- Boundedness constraint: physical values satisfy |log(value)| ≤ 16.
  67      This covers values from exp(-16) ≈ 1.1×10⁻⁷ to exp(16) ≈ 8.9×10⁶. -/
  68  log_bound : |Real.log value| ≤ 16
  69
  70/-- The set of all well-formed configurations (value > 0) -/

used by (40)

From the project-wide theorem graph. These declarations reference this one in their body.

… and 10 more

depends on (15)

Lean names referenced from this declaration's body.