(&self)
| 478 | /// `whnf_no_delta_for_def_eq` from scratch (mathlib hot path). |
| 479 | pub whnf_no_delta_cheap_cache: FxHashMap<(Addr, CtxAddr), KExpr<M>>, |
| 480 | /// WHNF core cache: structural-only reduction (beta/iota/zeta/proj), |
| 481 | /// no native primitives, no delta. Mirrors lean4lean's `whnfCoreCache` |
| 482 | /// (refs/lean4lean/Lean4Lean/TypeChecker.lean:19) and lean4 C++'s |
| 483 | /// `m_whnf_core`. Populated only when flags are FULL — cheap-projection |
| 484 | /// results are not safe to share with full callers. |
| 485 | pub whnf_core_cache: FxHashMap<(Addr, CtxAddr), KExpr<M>>, |
no outgoing calls