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
The ambiguous call is in your gen<F>, where F::epsilon could now either mean Float::epsilon or your Epsilon::epsilon. You could change it to a more explicit call to one of these choices. Or since you seem to just be extending Float, you might remove your epsilon.
The text was updated successfully, but these errors were encountered:
Just a heads up -- we recently added
Float::epsilon
in rust-num/num#231, and then a Crater run showed thatsimple_gaussian
broke due to call ambiguity. See the logs here:https://tools.taskcluster.net/task-inspector/#WJwHtMdHQmikycmFEZGd3Q/0
The ambiguous call is in your
gen<F>
, whereF::epsilon
could now either meanFloat::epsilon
or yourEpsilon::epsilon
. You could change it to a more explicit call to one of these choices. Or since you seem to just be extending Float, you might remove your epsilon.The text was updated successfully, but these errors were encountered: