structure
definition
def or abbrev
Tick
show as:
view Lean formalization →
formal statement (Lean)
36structure Tick where
37 index : ℕ
38 deriving DecidableEq
39
40/-- Ticks are ordered by their index. This IS time — no background manifold. -/
41instance : LE Tick := ⟨fun a b => a.index ≤ b.index⟩
proof body
Definition body.
42instance : LT Tick := ⟨fun a b => a.index < b.index⟩
43instance : DecidableRel (· ≤ · : Tick → Tick → Prop) := fun a b => Nat.decLe a.index b.index
44instance : DecidableRel (· < · : Tick → Tick → Prop) := fun a b => Nat.decLt a.index b.index
45
46/-- A ledger epoch: one complete 8-tick cycle. -/
used by (40)
-
ml_nucleosynthesis_eq_phi -
of -
ml_is_phi_power -
close_packed_lower_energy -
tetragonal_implies_orthorhombic -
nonzero_below_curie -
phiRung_neg -
sakharov_necessary -
rs_cone_cmin_value -
mkLabPrediction -
RelativisticFieldEffect -
sync_period_eq_360 -
fundamentalFrequency -
born_rule_jcost_connection -
RealityCertificate -
recognition_loop_has_surjection -
static_ground_state_impossible -
tickEquivLogicNat -
tickEquivNat -
tickEquivNat_apply -
tickEquivNat_succ -
tick_isNNO -
tick_orbit_eq_logicNat -
tick_orbit_eq_logicNat_succ -
tickRecursor -
tickRecursor_succ -
tickSucc -
tickSucc_index -
tickZero -
tickZero_index