Back to basics: a simple idiomatic version From the original C program, we inherited a bunch of optimizations. Let’s undo them, and implement the essential algorithm without making too many assumptions. Because the algorithm can be implemented with a few simple loops, processing array elements that don’t depend on one another, it’s an excellent candidate for auto-vectorization. Rusty bits I’m stic