structure
definition
def or abbrev
HealingProtocol
show as:
view Lean formalization →
formal statement (Lean)
136structure HealingProtocol where
137 /-- Number of healer-patient pairs -/
138 n_pairs : ℕ := 50
proof body
Definition body.
139 /-- Distances to test (meters) -/
140 distances : List ℝ := [1, 10, 100, 1000, 10000]
141 /-- Blinding: healer knows when sending, patient does not -/
142 double_blind_patient : Bool := true
143 /-- Outcome measures -/
144 outcomes : List String := ["subjective_wellbeing", "HRV_coherence", "EEG_phase_locking"]
145
146/-- Healing coherence transfer prediction -/