structure
definition
def or abbrev
RRFDescription
show as:
view Lean formalization →
formal statement (Lean)
60structure RRFDescription where
61 /-- Core definitions exist.
62 Witnessed by golden ratio φ. -/
63 core_witness : ℝ
64 /-- Theorems are proved. -/
65 theorem_count : ℕ
66 /-- Models exist (consistency). -/
67 model_witness : Nonempty (ℝ → ℝ)
68 /-- Hypotheses are explicit. -/
69 hypothesis_count : ℕ
70
71/-- The current RRF formalization. -/