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)

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

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.