You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
replace decimal.Decimal with dual int64/float64 number representation (#138)
Removes the shopspring/decimal dependency and replaces all number
handling with a dual int64/float64 internal representation (Lua 5.3
style). Integer operations stay int64, float operations use float64,
and division always promotes to float (Python 3 style). This
eliminates the massive allocation overhead from arbitrary-precision
math in hot loops — the primary performance bottleneck for game
engine workloads in Lumen.
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
0 commit comments