Name: inC81039 Date: 06/04/99
According to "Java Language Specification" for Math.log()
"If argument is NaN or less than zero, then the result is NaN."
However, actual results are different:
Math.log(-0.0000001) = -Infinity
Math.log(-1) = -Infinity
======================================================================