vyre-self-substrate 0.6.3

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
16
//! Self-substrate wrappers for structural graph, causal, and logic kernels.
//!
//! The primitive crate owns the graph algorithms. This module owns the
//! self-hosting surface that wires those algorithms into scheduler,
//! optimizer, causal-analysis, knowledge-compilation, and resident traversal
//! contexts without forking their semantics.

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::*;