pith. machine review for the scientific record. sign in
structure definition def or abbrev

LedgerEntry

show as:
view Lean formalization →

No prose has been written for this declaration yet. The Lean source and graph data below render without it.

generate prose now

formal statement (Lean)

  45structure LedgerEntry where
  46  /-- Unique identifier for the entry -/
  47  id : ℕ
  48  /-- The configuration ratio being recognized -/
  49  ratio : ℝ
  50  /-- Ratio is positive -/
  51  ratio_pos : 0 < ratio
  52  /-- J-cost of this entry (must equal Jcost ratio) -/
  53  cost : ℝ
  54  /-- Phase (0-7) in 8-tick cycle -/
  55  phase : Fin 8
  56  /-- Constraint: cost = Jcost(ratio) -/
  57  cost_eq : cost = Jcost ratio
  58
  59/-- Create a ledger entry from a ratio and phase. -/

used by (23)

From the project-wide theorem graph. These declarations reference this one in their body.

depends on (25)

Lean names referenced from this declaration's body.