kernel-CReal.pi
- Kind
- kernel-term
- Status
- checked
Supports: CReal.pi is admitted by the trusted kernel gate as a definition with the type recorded in formal.statement.
cargo run -q --release -p axeyum-lean-kernel --example kernel_declaration_projection -- --require-declaration CReal.pi --require-kind definition 2>/dev/null | grep -cE '^found[[:space:]]creal[[:space:]]definition[[:space:]]CReal\.pi[[:space:]]' Evidence notes
A theorem inventory cannot answer this: prelude_theorem_inventory / theorem_dependency_inventory / nat_theorem_inventory all filter to Declaration::Theorem and return ZERO rows for any Definition, so a grep against them confirms nothing. --require-declaration exits non-zero when no exact display-name match of the required kind exists, and grep -c (never -q) consumes the pipe and asserts the count. --release is MANDATORY.