From 1b430c2c4d8d83f0096a8ac1547b0ddd05a36628 Mon Sep 17 00:00:00 2001 From: Jamie Bray Date: Sun, 3 Oct 2021 22:35:15 +0800 Subject: [PATCH] Celebrate win in readme --- readme.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/readme.md b/readme.md index 9cd148d..556a9f2 100644 --- a/readme.md +++ b/readme.md @@ -34,6 +34,12 @@ Requires: ## Milestones +### 125% speed increase in logic + +When converting values of `0`/`maxInt` to `0`/`1` we now use a mathematical expression `1 - (state + 1)` instead of a ternary. + +[21bd48749570ac9c05663c661f60ce5ede1223ff](https://github.com/Jumbub/game-of-speed/commit/21bd48749570ac9c05663c661f60ce5ede1223ff) + ### THREADS% speed increase in logic Finally gave in to the lazy performance improvement, throwing more threads at the problem.