@fatlimey@mastodon.gamedev.place
Post #2057536
2026-03-31 18:34 UTC
Finally I understand the difference between [Dekker71] FAST-TWO-SUM(a,b) and [Knuth81] TWO-SUM(a,b)
FAST-TWO-SUM requires a>b and both return:
x = a + b + err(a⊕b)
y = -err(a⊕b)
So yes, x+y = a+b but not quite how you might imagine.
Well that only took 30 years to grok.
Replies (1)
-
@brouhaha@mastodon.social 2026-03-31 20:16
@fatlimey@mastodon.gamedev.place That's slow fast 2sum.