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
This type conversion to float will cause an Overflow Error when z0 is too large. As Python does floating point division by default, this cast is unnecessary. Replacing the line by p = z0 / (z0+z1) solves the problem. Optionally, one could invert the division to remove the need to divide by z0+z1.
The text was updated successfully, but these errors were encountered:
KUS/KUS.py
Line 142 in 0dfba46
This type conversion to float will cause an Overflow Error when
z0
is too large. As Python does floating point division by default, this cast is unnecessary. Replacing the line byp = z0 / (z0+z1)
solves the problem. Optionally, one could invert the division to remove the need to divide by z0+z1.The text was updated successfully, but these errors were encountered: