Skip to content
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

Internal error got on Julia1.2.0 #21

Closed
terasakisatoshi opened this issue Sep 7, 2019 · 1 comment
Closed

Internal error got on Julia1.2.0 #21

terasakisatoshi opened this issue Sep 7, 2019 · 1 comment

Comments

@terasakisatoshi
Copy link

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)'
@mikeingold
Copy link

Support for Julia versions below v1.6 was removed earlier this year in commit #0e8470d:

julia = "1.6"

Since this Issue was specific to Julia v1.2.0 and apparently isn’t reproduced on newer versions, it’s probably safe to close.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants