limen_runtime/runtime/p2_single.rs
1//! Single-thread P2 runtime.
2//!
3//! Drives a graph by calling `step` on one node per tick, selected by a
4//! pluggable [`DequeuePolicy`](limen_core::scheduling::DequeuePolicy).
5//! The policy (EDF or throughput) is a generic parameter — no `dyn` dispatch.
6//!
7//! > **Status: stub.** Implementation pending `RS1` runtime lifecycle work.