You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Without this hardening, we will return NaNs for negative inputs, which
can happen from time to time.
I also ran across fmin/fmax in one implementation, which we never
commented on in the books. Added an explanation for these two functions
for readers unfamiliar with C++.
Resolves#1202
Without this hardening, we will return NaNs for negative inputs, which
can happen from time to time.
I also ran across fmin/fmax in one implementation, which we never
commented on in the books. Added an explanation for these two functions
for readers unfamiliar with C++.
Resolves#1202
We currently have the following implementation:
This will barf on negative values, returning NaN. Should we harden this like so?
or
The text was updated successfully, but these errors were encountered: