kernel-CReal.ivt_exact_root_decides_sign
- Kind
- kernel-term
- Status
- checked
Supports: CReal.ivt_exact_root_decides_sign 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 -- CReal.ivt_exact_root_decides_sign 2>/dev/null | /usr/bin/grep -cE '^CReal\.ivt_exact_root_decides_sign[[:space:]]' Evidence notes
Two independent failure modes, so the exit status depends on the finding rather than on the run completing: theorem_dependency_inventory exits non-zero when a NAMED filter matches nothing, and grep -c exits 1 printing 0 when the anchored line is absent. Anchored with [[:space:]], never \t -- in a scripted (GNU) grep \t is a literal t, and 54 facts in this ledger once matched nowhere but one interactive shell because of it. grep -c rather than grep -q, which would SIGPIPE the producer under pipefail. /usr/bin/grep explicitly, because an interactive `grep` here is a ugrep wrapper with different escape semantics. --release is MANDATORY: this tool builds creal/complex/cpoint, which overflow the default debug thread stack.