vyre-self-substrate 0.6.1

Vyre self-substrate: vyre using its own primitives on its own scheduler problems. The recursion-thesis layer between vyre-primitives and vyre-driver.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Self-substrate wrappers for graph traversal and fixpoint-step primitives.
//!
//! Graph traversal semantics stay in `vyre-primitives`, while self-substrate
//! owns the dispatch-facing names used by scheduler, resident fixed-point,
//! and parity code.

mod dispatch;
#[cfg(any(test, feature = "cpu-parity"))]
mod references;
#[cfg(test)]
mod tests;

pub use dispatch::*;
#[cfg(any(test, feature = "cpu-parity"))]
pub use references::*;