class
definition
BoundedStep
show as:
view math explainer →
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
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