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
math.comb(n, k) * (1/2**(n-1)) can raise an OverflowError pretty quick inside the coefficient_fun() built in EvaluationStrategy, but math.comb(n, k) / 2**(n-1) won't. We probably need to return a callable in the coefficient, or hardcode the division instead of the multiplication 🙈
The text was updated successfully, but these errors were encountered:
math.comb(n, k) * (1/2**(n-1))
can raise an OverflowError pretty quick inside thecoefficient_fun()
built inEvaluationStrategy
, butmath.comb(n, k) / 2**(n-1)
won't. We probably need to return a callable in the coefficient, or hardcode the division instead of the multiplication 🙈The text was updated successfully, but these errors were encountered: