// ---
// tags: nox, rust
// crystal-type: source
// crystal-domain: comp
// ---
//! execution trace โ 16-column register table, one row per reduce() call
//!
//! r[0] = pattern tag (0-17)
//! r[1] = object NounId
//! r[2] = formula NounId
//! r[3] = result NounId (NIL on halt/error)
//! r[4..8] = pattern-specific operands (filled by pattern; zero otherwise)
//! r[8] = budget before step
//! r[9] = budget after step
//! r[10..16] = reserved (error kind in r[10] on error rows)
extern crate alloc;
use Vec;
pub const COLS: usize = 16;
/// zero-overhead tracer for non-proof paths (CLI, tests)
;
/// accumulating tracer โ collects all rows into a Vec
;