I just downloaded the openjdk source and came to the realization that nearly all of the java.lang.Math class was implemented in native c/c++ code. I was wondering if there were any implementations that were fully written in java.

link|improve this question
just curious: why? – Jason S Oct 6 '10 at 12:54
1  
I'm working on a project that converts the bytecodes generated by the java compiler to another form. To test the improvement that the conversion makes we have a series of tests. Many of my tests use the java.lang.Math class. – Link Oct 7 '10 at 3:33
feedback

2 Answers

Have a look at MicroFloat. It targets J2ME platform and according to the author it implements all methods in java.lang.Math.

link|improve this answer
Wow that looks great! – Link Oct 6 '10 at 8:23
feedback

Currently some pure Java improvements for methods in the java.lang.Math class are integrated into apache commons-math:

See: Elementary functions in JDK are slower than necessary and not as accurate as they could be.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.