structure
definition
def or abbrev
AttractorStructureCert
show as:
view Lean formalization →
formal statement (Lean)
62structure AttractorStructureCert where
63 cost_nonneg : ∀ {N : ℕ} (s : ClimatePhasePoint N), 0 ≤ climateJCost s
64 vacuum_zero : ∀ {N : ℕ}, climateJCost (fun _ : Fin N => (0 : ℝ)) = 0
65 vacuum_minimum :
66 ∀ {N : ℕ} (s : ClimatePhasePoint N),
67 climateJCost (fun _ : Fin N => (0 : ℝ)) ≤ climateJCost s
68