kernel-logic-decidable-decide-eq-true-iff
- Kind
- kernel-term
- Status
- checked
Supports: For a decidable proposition p, the decision procedure for p returns the Boolean true if and only if p holds.
test "$(cargo run -q -p axeyum-lean-kernel --example nat_theorem_inventory -- Decidable.decide_eq_true_iff 2>/dev/null | grep -Ec '^Decidable\.decide_eq_true_iff[[:space:]]')" -ge 1 Evidence notes
`build_logic_prelude` (built first by `build_nat_prelude`, which `nat_theorem_inventory` constructs) admits `Decidable.decide_eq_true_iff` only through the trusted kernel gate, so this line in the tool's output IS the type-check. Anchored with `grep -Ec '^Decidable.decide_eq_true_iff[[: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).