Go just implemented (4 hours ago!) the recursive division by Burnikel and Ziegler. They avoided the co-recursion between `2n x n` and `3n x 2n` words and it seems like the implementation is a bit simpler. - https://github.com/golang/go/issues/21960 - https://github.com/golang/go/commit/194ae3236d81cf16dc39b955efc1b9202b59d067
Go just implemented (4 hours ago!) the recursive division by Burnikel and Ziegler.
They avoided the co-recursion between
2n x nand3n x 2nwords and it seems like the implementation is a bit simpler.