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
What happens for Generate() is that testing/quick will generate really huge complex numbers, such that when it's Pow'd it becomes +Inf+Infi instead of returning the identity.
Example:
var identity complex128 = 1
x := 1.2137443348035267e+308+1.5113294366498325e+308i
y := cmplx.Pow(x, identity)
// returns (+Inf+Infi)
This causes tests and the CI to fail, therefore it's been temporarily removed until we can figure out the right thing to do
From @chewxy on August 28, 2017 9:17
What happens for
Generate()
is thattesting/quick
will generate really huge complex numbers, such that when it'sPow
'd it becomes+Inf+Infi
instead of returning the identity.Example:
This causes tests and the CI to fail, therefore it's been temporarily removed until we can figure out the right thing to do
Copied from original issue: gorgonia/gorgonia#143
The text was updated successfully, but these errors were encountered: