Skip to content

Commit

Permalink
Merge pull request #174 from JuliaReach/schillic/kwargs
Browse files Browse the repository at this point in the history
Pass kwargs to default algorithm
  • Loading branch information
schillic authored Mar 23, 2024
2 parents df273b2 + af7c6be commit 6f59c24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/enclose.jl
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ julia> enclose(x -> 1 - x^4 + x^5, 0..1, [TaylorModelsEnclosure(), NaturalEnclos
```
"""
function enclose(f::Function, dom::Interval_or_IntervalBox; kwargs...)
return enclose(f, dom, NaturalEnclosure())
return enclose(f, dom, NaturalEnclosure(); kwargs...)
end

function enclose(f::Function, dom::Interval_or_IntervalBox,
Expand Down

0 comments on commit 6f59c24

Please sign in to comment.