Visual Studio Code – How to efficiently apply polynomials in C++ without a loop?
I want to get accurate approximations of some complex functions (pow, exp, log, log2...) faster than ones provided by cmath in C++'s standard library. To do this I want to exploit the way the floating point is encoded and get…