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

BoundedStep

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)

   6class BoundedStep (α : Type) (degree_bound : outParam Nat) where
   7  step : α → α → Prop
   8  neighbors : α → Finset α
   9  step_iff_mem : ∀ x y, step x y ↔ y ∈ neighbors x
  10  degree_bound_holds : ∀ x, (neighbors x).card ≤ degree_bound
  11
  12end IndisputableMonolith

used by (3)

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

depends on (3)

Lean names referenced from this declaration's body.