Dev/Smoke/ReachabilityWrapper/Contract.lean
1import Catalog.Sparsity.ColoringNumbers.Contract
2
3namespace Dev.Smoke.ReachabilityWrapper
4
5open Catalog.Sparsity.ColoringNumbers
6
7variable {V : Type*} [DecidableEq V] [Fintype V] [LinearOrder V]
8
9/-- Smoke-test wrapper around `SReach` from
10`Catalog.Sparsity.ColoringNumbers`. -/
11def smokeReach (G : SimpleGraph V) (r : ℕ) (v : V) : Set V :=
12 SReach G r v
13
14end Dev.Smoke.ReachabilityWrapper
15