kernel-Nat.bitwise_or_eq_lor
- Kind
- kernel-term
- Status
- checked
Supports: for all m n, bitwise or_fn m n = lor m n
test "$(cargo run -q -p axeyum-lean-kernel --example nat_theorem_inventory -- bitwise_or_eq_lor 2>/dev/null | grep -Ec '^Nat\.bitwise_or_eq_lor[[:space:]]')" -ge 1 Evidence notes
`build_nat_prelude` admits this theorem through the trusted `Kernel::add_declaration` gate, which re-checks the proof term against the stated type, so producing this row at all is a machine-checked proof. The anchor `^Nat\.bitwise_or_eq_lor[[:space:]]` matters: the same filter also prints `Nat.bitwise_or_eq_lor_three_five` (the single-point predecessor this theorem supersedes), and the trailing `[[:space:]]` excludes it -- verified exactly 1 row. `nat_theorem_inventory` exits non-zero for a name that does not exist, and `grep -Ec` consumes the pipe and the count is tested, so the exit status depends on what the run found.