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

Open
terasakisatoshi opened this issue Sep 7, 2019 · 0 comments
Open

Internal error got on Julia1.2.0 #21

terasakisatoshi opened this issue Sep 7, 2019 · 0 comments

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)'
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

1 participant