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
In #8, @sevenstarknight brought to light the fact that the behavior of power operations with exponents < 0 is not consistent with the equivalent division operation. In other words, given x = a_u(...), 1/x currently produces a different result than x**(-1.0). These should, of course, be equivalent operations.
The implementations of the __pow__ and __rpow__ methods should be investigated and adjusted accordingly.
The text was updated successfully, but these errors were encountered:
In #8, @sevenstarknight brought to light the fact that the behavior of power operations with exponents < 0 is not consistent with the equivalent division operation. In other words, given
x = a_u(...)
,1/x
currently produces a different result thanx**(-1.0)
. These should, of course, be equivalent operations.The implementations of the
__pow__
and__rpow__
methods should be investigated and adjusted accordingly.The text was updated successfully, but these errors were encountered: