We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
One of the code using HCubature.jl got internal error on Julia1.2.0 . Here is an example how to reproduce the error:
$ docker run --rm -it julia:1.2.0 \ julia -e 'using Pkg; Pkg.add("HCubature") using HCubature f(x, y) = x*y^2 g(f; m=1) = hcubature(w->f(w[1], w[2]), [0,0], [1,1]) @show g(f)'
Result: see my gist
On the other hand, It works for Julia 1.1.1, 1.3.0 or 1.4.0-DEV(Commit d3250fe)
docker run --rm -it julia:1.3.0 \ julia -e 'using Pkg; Pkg.add("HCubature") using HCubature f(x, y) = x*y^2 g(f; m=1) = hcubature(w->f(w[1], w[2]), [0,0], [1,1]) @show g(f)'
The text was updated successfully, but these errors were encountered:
Support for Julia versions below v1.6 was removed earlier this year in commit #0e8470d:
v1.6
HCubature.jl/Project.toml
Line 13 in 0e8470d
Since this Issue was specific to Julia v1.2.0 and apparently isn’t reproduced on newer versions, it’s probably safe to close.
v1.2.0
Sorry, something went wrong.
No branches or pull requests
One of the code using HCubature.jl got internal error on Julia1.2.0 .
Here is an example how to reproduce the error:
Result: see my gist
On the other hand, It works for Julia 1.1.1, 1.3.0 or 1.4.0-DEV(Commit d3250fe)
The text was updated successfully, but these errors were encountered: