kernel-CReal.riemannSum_cauchy
- Kind
- kernel-term
- Status
- checked
Supports: CReal.riemannSum_cauchy is admitted by the trusted kernel gate with the type recorded in formal.statement.
cargo run -q --release -p axeyum-lean-kernel --example theorem_dependency_inventory -- riemannSum_cauchy 2>/dev/null | grep -cE '^CReal\.riemannSum_cauchy[[:space:]]' Evidence notes
build_creal_prelude admits CReal.riemannSum_cauchy through the trusted Kernel::add_declaration gate. theorem_dependency_inventory exits non-zero for a named filter matching nothing; grep -c (never -q) both avoids a SIGPIPE-under-pipefail false negative and independently asserts the exact tab-anchored line is present. Mutation-tested on an isolated /data0 snapshot (scripts/lane-snapshot.sh, never the shared checkout): renaming the display string from "riemannSum_cauchy" to "riemannSum_cauchy_MUTATED" at crates/axeyum-lean-kernel/src/creal.rs:4379 makes this exact grep return 0 matches (exit 1), while an unrelated control name (CReal.integral_const) in the SAME rebuilt binary still matched -- confirming the pattern discriminates on the intended theorem and not on the build succeeding in general. --release is MANDATORY: this tool also builds creal/complex/cpoint, which recurse deep enough in a debug build to overflow the default thread stack.