-
-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Regression with [email protected] #89
Comments
cc @lxvm |
Seems to be a dispatch problem, since passing the argument as a function works: julia> quadgk(A, 0.0, 10.0)
(51.76911234248546, 4.274582013885939)
julia> quadgk(t -> A(t), 0.0, 10.0)
(50.0, 0.0) |
Okay, the problem is that |
Right, I can rename |
Should be fixed by #90. Will merge and tag when green. |
Thanks! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
An issue was caught in SciML/DataInterpolations.jl#178 where tests started failing with [email protected]
I have made a MWE to illustrate the issue (using a simple LinearInterpolation from DataInterpolations):
It is a straight line with slope 1. So the integral should be 50.0.
with [email protected]
with [email protected]
The text was updated successfully, but these errors were encountered: