kernel-Nat.eq_of_testBit_eq
- Kind
- kernel-term
- Status
- checked
Supports: Nat.eq_of_testBit_eq is admitted by the trusted kernel gate with the type recorded in formal.statement.
cargo run -q --release -p axeyum-lean-kernel --example nat_theorem_inventory -- eq_of_testBit_eq 2>/dev/null | grep -Ec '^Nat\.eq_of_testBit_eq[[:space:]]' Evidence notes
`build_nat_prelude` admits this theorem only through the trusted `Kernel::add_declaration` gate, which re-checks the proof term against the stated type. `nat_theorem_inventory` exits non-zero for a name that does not exist, and `grep -Ec` consumes the pipe so the tested count (expected >= 1) decides the exit status, never `grep -q` under pipefail. Anchored with `[[:space:]]`, never a literal tab, per this ledger's own grep-dialect gotcha. `--release` is mandatory: this tool builds `creal`/`complex`/`cpoint`, which overflow the default debug thread stack.