kernel-logic-bool-false-ne-true
- Kind
- kernel-term
- Status
- checked
Supports: The Boolean value false is not equal to the Boolean value true.
test "$(cargo run -q -p axeyum-lean-kernel --example nat_theorem_inventory -- Bool.false_ne_true 2>/dev/null | grep -Ec '^Bool\.false_ne_true[[:space:]]')" -ge 1 Evidence notes
`build_logic_prelude` (built first by `build_nat_prelude`, which `nat_theorem_inventory` constructs) admits `Bool.false_ne_true` only through the trusted kernel gate, so this line in the tool's output IS the type-check. Anchored with `grep -Ec '^Bool.false_ne_true[[:space:]]'` on the tool's own substring-filtered output, matching exactly one row; a name that does not exist makes both the tool's argument filter and the anchored grep fail (verified both ways 2026-08-25).