JuliaIntervals / TaylorModels.jl

Rigorous function approximation using Taylor models in Julia
Other
63 stars 14 forks source link

fix warning with derivative #93

Closed mforets closed 3 years ago

mforets commented 3 years ago

On master,

julia> using TaylorModels
[ Info: Precompiling TaylorModels [314ce334-5f6e-57ae-acf6-00b6e903104a]

julia> derivative
WARNING: both IntervalRootFinding and TaylorIntegration export "derivative"; uses of it in module TaylorModels must be qualified
ERROR: UndefVarError: derivative not defined

julia> ∇
WARNING: both IntervalRootFinding and TaylorIntegration export "∇"; uses of it in module TaylorModels must be qualified
ERROR: UndefVarError: ∇ not defined

This branch changes such behavior to

julia> using TaylorModels
[ Info: Precompiling TaylorModels [314ce334-5f6e-57ae-acf6-00b6e903104a]

julia> derivative
derivative (generic function with 10 methods)

julia> ∇
gradient (generic function with 1 method)
lbenet commented 3 years ago

Thanks a lot! And sorry for thee delay in getting into this... Merging...