kernel-Nat.mod_eq_iff_mod_eq
- Kind
- kernel-term
- Status
- checked
Supports: Nat.mod_eq_iff_mod_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 mod_eq_iff_mod_eq 2>/dev/null | grep -cE '^Nat\.mod_eq_iff_mod_eq[[:space:]]' Evidence notes
nat_theorem_inventory prints one row per requested name if the theorem exists and nothing if it does not, so grep -c against an anchored pattern (never \t -- an interactive ugrep reads \t as a real tab, GNU grep as a literal 't') is the discriminating check. Verified both ways 2026-08-30: the real name prints 1 and exits 0; a fabricated name (mod_eq_iff_mod_eq_bogus) prints 0 and grep exits 1. --release is required (this tool builds creal/complex/cpoint, which overflow the default debug thread stack).