KirkMcDonald / kirkmcdonald.github.io

Simple web-based calculator for the game Factorio.
Apache License 2.0
553 stars 147 forks source link

don't special case gcd for div and mul #105

Closed terite closed 5 years ago

terite commented 5 years ago

Tested using calc.html#tab=settings&data=bobs-0-16-37&items=space-science-pack:f:100 Google Chrome Version 69.0.3497.100 (Official Build) (64-bit)

Before: solver.solve takes roughly 2000 ms After: solver.solve takes roughly 1380 ms

KirkMcDonald commented 5 years ago

These are the only places where the 'gcd' parameter was used. You should now be able to eliminate it, while you're at it.

terite commented 5 years ago

Done, good feedback!