1f885accb1
Three targeted optimizations in the verify hot path: 1. Precompute and cache lambda(G) table: the 8 AffinePoints for λ(G) odd-multiples are now lazily initialized once (like gTable) instead of recomputing 8 field multiplications per verify call. 2. Efficient P odd-multiples table: build [1P, 3P, 5P, ..., 15P] via 1 doubling + 7 additions (compute 2P then add repeatedly) instead of building all 16 multiples [1P..16P] with 15 additions and discarding the even ones. 3. Pre-allocated Jacobian negation scratch: the MutablePoint used for negating P-side table entries (when wNAF digit is negative) is now allocated once before the main loop instead of per-digit. Also removed the unused maybeNegateTable function. Benchmark: verifySchnorr 3,429 → 3,556 ops/s (7.2x vs native) https://claude.ai/code/session_01BhU63WUe9AhikZxRdw3Lpg