Content-addressed context identity for the empty context (no bindings).
()
| 30 | |
| 31 | /// Content-addressed context identity for the empty context (no bindings). |
| 32 | pub fn empty_ctx_addr() -> CtxAddr { |
| 33 | use std::sync::LazyLock; |
| 34 | static ADDR: LazyLock<CtxAddr> = |
| 35 | LazyLock::new(|| blake3::hash(b"ix.kernel.ctx.empty")); |
| 36 | *ADDR |
| 37 | } |
| 38 | |
| 39 | /// Maximum iterations in the WHNF delta loop (local per-call). |
| 40 | pub const MAX_WHNF_FUEL: u32 = 10_000; |
no outgoing calls
no test coverage detected