When graphs of ``` Sqrt(-Log(x)) ``` Causes a NaN for negative numbers due to it being getting reduced to. ``` Sqrt(-1)*Sqrt(Log(x)) -> NaN*Sqrt(Log(x)) ``` Note for values of X less than 1. This should not produce a NaN. Reductions of ``` Sqrt(c1*x)->c2*Sqrt(x) ``` should be disabled when c1 is negative.
When graphs of
Causes a NaN for negative numbers due to it being getting reduced to.
Note for values of X less than 1. This should not produce a NaN. Reductions of
should be disabled when c1 is negative.