structure
definition
def or abbrev
Config
show as:
view Lean formalization →
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)
-
default -
additive_emp_left -
additive_emp_right -
additive_strict_of_both_inconsistent -
additive_three -
Calibration -
ConfigSpace -
CostFunction -
cost_ne_zero_of_inconsistent -
cost_pos_iff_inconsistent -
cost_pos_of_inconsistent -
cost_zero_of_consistent -
emp_cost_zero -
extension_to_consistent -
inconsistent_of_join_indep_right -
independent_emp -
join_emp -
recognition_work_constraint_cert -
RecognitionWorkConstraintCert -
recognition_work_constraint_theorem -
uniqueness_on_indep_decomposition -
uniqueness_three_indep -
Config -
ConfigProps -
defaultConfig -
gbar_with -
vbarSq_with -
vbar_with -
w_t_nonneg_with -
w_t_ref_with