kernel-Nat.coprime_of_lt_min_fac
- Kind
- kernel-term
- Status
- checked
Supports: Nat.coprime_of_lt_min_fac is admitted by the trusted kernel gate with the type recorded in formal.statement.
test "$(cargo run -q --release -p axeyum-lean-kernel --example nat_theorem_inventory -- coprime_of_lt_min_fac 2>/dev/null | grep -Ec '^Nat\.coprime_of_lt_min_fac[[:space:]]')" -ge 1 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` prints nothing for a name that does not exist, and `grep -Ec` consumes the pipe so the tested count decides the exit status. Anchored with `^Nat\.coprime_of_lt_min_fac[[:space:]]` so a future sibling (e.g. a helper of the same shape) cannot satisfy this row. Run `--release`: the debug build SIGABRTs building the full constructed environment (see CLAUDE.md's `prelude_theorem_inventory` gotcha).