pith. machine review for the scientific record. sign in
class

BoundedStep

definition
show as:
view math explainer →
module
IndisputableMonolith.Causality.BoundedStep
domain
Causality
line
6 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Causality.BoundedStep on GitHub at line 6.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

used by

formal source

   3namespace IndisputableMonolith
   4
   5/-- Locally-finite step relation with bounded out-degree. -/
   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