cas-boolean-circuit-nand-full-adder-replay
- Kind
- witness-replay
- Status
- checked
Supports: the named 13-gate NAND-only circuit's truth table matches one-bit binary addition (sum, carry-out) for all 8 input rows
cargo test -p axeyum-cas --lib boolean_circuit::tests::nand_only_full_adder_matches_arithmetic_for_every_row -- --exact 2>/dev/null | grep -cE '^test boolean_circuit::tests::nand_only_full_adder_matches_arithmetic_for_every_row \.\.\. ok$' Evidence notes
Verified on this host both directions: the real test path gives count=1, exit 0; a deliberately absent test path (this repository's own tested trap -- a bare `cargo test` with a nonmatching filter prints `0 filtered out` and exits 0) gives count=0, exit 1 through this grep -cE shape. gate_counts in the Verified variant is pinned to {Nand: 13} in the test, so the assertion also fixes the gate count and the single gate kind used, not merely that 8 rows passed.