Hi,
I’m writing a program which will need to call Math.log() and Math.exp() quite a bit, and knowing that these are pretty intensive functions, was wondering if anyone has written any accurate faster math optimisations of them ?
Also Math.sqrt(), I’m aware of some bitwise operation routines which are faster on some JVMs, but it seems more recent JVMs are pretty well optimised in Math.sqrt() already ?
Cheers