Files
OpenClaw-PwnKit/attacks
kigland 7c2f0f0bc9 fix: replace O(n) dict copy with direct mutation for fitness cache
The eval_cache was being copied on every insert via {**eval_cache, key: val},
creating O(n) overhead per evaluation. Since this is local mutable state
within optimize(), direct dict assignment is both correct and efficient.
2026-03-08 15:12:56 +08:00
..