6/26/2026 at 2:47:21 PM
Many years ago, on Boardgamegeek, there was a game trading system called "Math Trades", where participants would list a number of trades they were willing to make, and they ran some complicated calculations to figure out how to let as many as possible trade.CS professor Chris Okasaki, known for his book on purely functional data structures, also played board games and he came across this phenomenon. He realized that it could be modelled as a bipartite matching problem, and wrote a MUCH faster program to manage math trades.
https://okasaki.blogspot.com/2008/03/what-heck-is-math-trade...
I guess it can be made even faster now in theory.
by vintermann
6/27/2026 at 3:09:21 AM
I don't think this new result is supposed to be a speedup. It might even be slower than the existing method. Rather, it's a way to get rid of the random number generator that the old algorithm relied on, so it's deterministic unlike the old way. I'm not even sure that it's guaranteed to find the answer, as opposed to finding it with high probability.It's mostly of theoretical interest except for some possible niche applications, I'd say. For a math trade type of problem, you'd just go ahead and use the old algorithm with an RNG.
Another famous result of this type was AKS primality testing. Randomized algorithms like Miller-Rabin were known for a long time, very reliable, and quite simple to implement, but AKS was an important theoretical advance because it didn't use random inputs. I think everyone still uses Miller-Rabin in practice.
by throwaway81523
6/26/2026 at 5:53:00 PM
The kidney exchange problem isn't bipartite matching but a cycle packing problem (or disjoint cycle cover).by emil-lp
6/26/2026 at 9:36:26 PM
The math trades still happen regularly at cons, e.g. Origins had one just last week.by mirashii
6/26/2026 at 10:05:21 PM
Chris okasaki! Was into functional data structures in college, great book and great dudeby sigbottle