Skip to content

Commit

Permalink
rename variables to avoid typos warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
schillic committed Apr 3, 2024
1 parent 6f59c24 commit 36aa15b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/taylormodels.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
# Methods using Taylor models
# ===========================

function enclose(f::Function, dom::Interval_or_IntervalBox, tme::TaylorModelsEnclosure; kwargs...)
function enclose(f::Function, dom::Interval_or_IntervalBox, tm::TaylorModelsEnclosure; kwargs...)
require(@__MODULE__, :TaylorModels; fun_name="enclose")

if tme.normalize
R = _enclose_TaylorModels_norm(f, dom, tme.order)
if tm.normalize
R = _enclose_TaylorModels_norm(f, dom, tm.order)
else
R = _enclose_TaylorModels(f, dom, tme.order)
R = _enclose_TaylorModels(f, dom, tm.order)
end
return R
end
Expand Down

0 comments on commit 36aa15b

Please sign in to comment.