Skip to content

Commit

Permalink
Remove deprecated ll* functions
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano committed Jul 14, 2018
1 parent 47c0b79 commit 3b671cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ v0.6.0 (2018-??-??)
* Support for Julia 0.6 was dropped.
* Keyword arguments `reltol` and `abstol` are now called, respectively, `rtol`
and `atol` , to match keywords in `isapprox` function.
* Deprecated `llvegas`, `llsuave`, `lldivonne`, and `llcuhre` functions have
been removed.

v0.5.0 (2018-05-15)
-------------------
Expand Down
5 changes: 0 additions & 5 deletions src/Cuba.jl
Original file line number Diff line number Diff line change
Expand Up @@ -206,9 +206,4 @@ function exit(f::Ptr{Cvoid}, arg::Ptr{Cvoid})
return 0
end

for f in (:vegas, :suave, :divonne, :cuhre)
llf = Symbol("ll", f)
@eval @deprecate $llf(args...; kwargs...) $f(args...; kwargs...)
end

end # module

0 comments on commit 3b671cb

Please sign in to comment.