Skip to content

Commit 5abd900

Browse files
authored
New methods for evaluate for Taylor1{TaylorN}} (#377)
* Add methods for evaluate of Taylor1{TaylorN}, and aff_normalize * Clean up (support Julia v1.10 onwards) * Remove Requires.jl dependency
1 parent 0298820 commit 5abd900

10 files changed

+32
-60
lines changed

Project.toml

-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ version = "0.18.3"
66
[deps]
77
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
88
Markdown = "d6f4376e-aef5-505a-96c1-9c027394607a"
9-
Requires = "ae029012-a4dd-5104-9daa-d747884805df"
109
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
1110

1211
[weakdeps]
@@ -28,7 +27,6 @@ JLD2 = "0.5"
2827
LinearAlgebra = "<0.0.1, 1"
2928
Markdown = "<0.0.1, 1"
3029
RecursiveArrayTools = "2, 3"
31-
Requires = "0.5.2, 1"
3230
SparseArrays = "<0.0.1, 1"
3331
StaticArrays = "1"
3432
Test = "<0.0.1, 1"

ext/TaylorSeriesIAExt.jl

+16-22
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ using TaylorSeries
44

55
import Base: ^, log, asin, acos, acosh, atanh, power_by_squaring
66

7-
import TaylorSeries: evaluate, _evaluate, normalize_taylor, square
7+
import TaylorSeries: evaluate, _evaluate, normalize_taylor, aff_normalize, square
88

9-
isdefined(Base, :get_extension) ? (using IntervalArithmetic) : (using ..IntervalArithmetic)
9+
using IntervalArithmetic
1010

1111
for T in (:Taylor1, :TaylorN)
1212
@eval begin
@@ -188,16 +188,11 @@ function evaluate(a::Taylor1, dx::Interval{S}) where {S<:Real}
188188
return sum_even + sum_odd*dx
189189
end
190190

191-
function evaluate(a::TaylorN, dx::IntervalBox{N,T}) where {T<:Real,N}
192-
@assert N == get_numvars()
193-
a_length = length(a)
194-
suma = zero(constant_term(a)) + Interval{T}(0, 0)
195-
@inbounds for homPol in reverse(eachindex(a))
196-
suma += evaluate(a[homPol], dx)
197-
end
191+
evaluate(a::Taylor1{TaylorN{T}}, dx::IntervalBox{N,S}) where {T<:Real, N, S} =
192+
evaluate(a, dx.v)
198193

199-
return suma
200-
end
194+
evaluate(a::TaylorN{T}, dx::IntervalBox{N,S}) where {T<:Real, N, S} =
195+
evaluate(a, dx.v)
201196

202197
function evaluate(a::HomogeneousPolynomial, dx::IntervalBox{N,T}) where {T<:Real,N}
203198
@assert N == get_numvars()
@@ -261,29 +256,28 @@ are mapped by an affine transformation to the intervals `-1..1`
261256
normalize_taylor(a::TaylorN, I::IntervalBox{N,T}, symI::Bool=true) where {T<:Real,N} =
262257
_normalize(a, I, Val(symI))
263258

259+
aff_normalize(x, I::Interval, ::Val{true}) = mid(I) + x*radius(I)
260+
aff_normalize(x, I::Interval, ::Val{false}) = inf(I) + x*diam(I)
261+
264262
# I -> -1..1
265263
function _normalize(a::Taylor1, I::Interval{T}, ::Val{true}) where {T<:Real}
266-
order = get_order(a)
267-
t = Taylor1(T, order)
268-
tnew = mid(I) + t*radius(I)
269-
return a(tnew)
264+
t = Taylor1(T, get_order(a))
265+
return a(aff_normalize(t, I, Val(true)))
270266
end
271267

272268
# I -> 0..1
273269
function _normalize(a::Taylor1, I::Interval{T}, ::Val{false}) where {T<:Real}
274-
order = get_order(a)
275-
t = Taylor1(T, order)
276-
tnew = inf(I) + t*diam(I)
277-
return a(tnew)
270+
t = Taylor1(T, get_order(a))
271+
return a(aff_normalize(t, I, Val(false)))
278272
end
279273

280274
# I -> IntervalBox(-1..1, Val(N))
281275
function _normalize(a::TaylorN, I::IntervalBox{N,T}, ::Val{true}) where {T<:Real,N}
282276
order = get_order(a)
283277
x = Vector{typeof(a)}(undef, N)
284278
for ind in eachindex(x)
285-
x[ind] = mid(I[ind]) + TaylorN(ind, order=order)*radius(I[ind])
286-
end
279+
x[ind] = aff_normalize(TaylorN(ind, order=order), I[ind], Val(true))
280+
end
287281
return a(x)
288282
end
289283

@@ -292,7 +286,7 @@ function _normalize(a::TaylorN, I::IntervalBox{N,T}, ::Val{false}) where {T<:Rea
292286
order = get_order(a)
293287
x = Vector{typeof(a)}(undef, N)
294288
for ind in eachindex(x)
295-
x[ind] = inf(I[ind]) + TaylorN(ind, order=order)*diam(I[ind])
289+
x[ind] = aff_normalize(TaylorN(ind, order=order), I[ind], Val(false))
296290
end
297291
return a(x)
298292
end

ext/TaylorSeriesJLD2Ext.jl

+1-5
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,7 @@ module TaylorSeriesJLD2Ext
33
import Base: convert
44
using TaylorSeries
55

6-
if isdefined(Base, :get_extension)
7-
import JLD2: writeas
8-
else
9-
import ..JLD2: writeas
10-
end
6+
import JLD2: writeas
117

128
@doc raw"""
139
TaylorNSerialization{T}

ext/TaylorSeriesRATExt.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module TaylorSeriesRATExt
22

33
using TaylorSeries
44

5-
isdefined(Base, :get_extension) ? (import RecursiveArrayTools) : (import ..RecursiveArrayTools)
5+
import RecursiveArrayTools
66

77
function RecursiveArrayTools.recursivecopy(a::AbstractArray{<:AbstractSeries, N}) where N
88
deepcopy(a)

ext/TaylorSeriesSAExt.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ using TaylorSeries
55
import Base.promote_op
66
import LinearAlgebra: matprod
77

8-
isdefined(Base, :get_extension) ? (using StaticArrays) : (using ..StaticArrays)
8+
using StaticArrays
99

1010
promote_op(::typeof(adjoint), ::Type{T}) where {T<:AbstractSeries} = T
1111
promote_op(::typeof(matprod), ::Type{T}, ::Type{U}) where {T <: AbstractSeries, U <: AbstractFloat} = T

src/TaylorSeries.jl

+1-22
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,9 @@ module TaylorSeries
2020
using SparseArrays: SparseMatrixCSC
2121
using Markdown
2222

23-
if !isdefined(Base, :get_extension)
24-
using Requires
25-
end
26-
2723
using LinearAlgebra: norm, mul!,
2824
lu, lu!, LinearAlgebra.lutype, LinearAlgebra.copy_oftype,
29-
LinearAlgebra.issuccess
30-
31-
if VERSION >= v"1.7.0-DEV.1188"
32-
using LinearAlgebra: NoPivot, RowMaximum
33-
end
25+
LinearAlgebra.issuccess, NoPivot, RowMaximum
3426

3527
import LinearAlgebra: norm, mul!, lu
3628

@@ -81,18 +73,5 @@ include("dictmutfunct.jl")
8173
include("broadcasting.jl")
8274
include("printing.jl")
8375

84-
function __init__()
85-
@static if !isdefined(Base, :get_extension)
86-
@require IntervalArithmetic = "d1acc4aa-44c8-5952-acd4-ba5d80a2a253" begin
87-
include("../ext/TaylorSeriesIAExt.jl")
88-
end
89-
@require StaticArrays = "90137ffa-7385-5640-81b9-e52037218182" begin
90-
include("../ext/TaylorSeriesSAExt.jl")
91-
end
92-
@require JLD2 = "033835bb-8acc-5ee8-8aae-3f567f8a3819" begin
93-
include("../ext/TaylorSeriesJLD2Ext.jl")
94-
end
95-
end
96-
end
9776

9877
end # module

src/arithmetic.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -1283,8 +1283,8 @@ end
12831283
# end
12841284

12851285
# see https://github.com/JuliaLang/julia/pull/40623
1286-
const LU_RowMaximum = VERSION >= v"1.7.0-DEV.1188" ? RowMaximum() : Val(true)
1287-
const LU_NoPivot = VERSION >= v"1.7.0-DEV.1188" ? NoPivot() : Val(false)
1286+
const LU_RowMaximum = RowMaximum()
1287+
const LU_NoPivot = NoPivot()
12881288

12891289
# Adapted from (Julia v1.2) stdlib/v1.2/LinearAlgebra/src/lu.jl#240-253
12901290
# and (Julia v1.4.0-dev) stdlib/LinearAlgebra/v1.4/src/lu.jl#270-274,

src/auxiliary.jl

+1
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,7 @@ Returns the type of the elements of the coefficients of `a`.
244244

245245
# Dumb methods included to properly export normalize_taylor (if IntervalArithmetic is loaded)
246246
@inline normalize_taylor(a::AbstractSeries) = a
247+
@inline aff_normalize(a::AbstractSeries) = a
247248

248249

249250
## _minorder

src/evaluate.jl

+9-2
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,16 @@ function evaluate(a::Taylor1{T}, dx::Taylor1{TaylorN{T}}) where {T<:NumberNotSer
102102
end
103103

104104

105-
# Evaluate a Taylor1{TaylorN{T}} on Vector{TaylorN} is interpreted
105+
# Evaluate a Taylor1{TaylorN{T}} on Vector{T} (or Vector{TaylorN{T}}) is interpreted
106106
# as a substitution on the TaylorN vars
107-
function evaluate(a::Taylor1{TaylorN{T}}, dx::Vector{TaylorN{T}}) where {T<:NumberNotSeries}
107+
function evaluate(a::Taylor1{TaylorN{T}}, dx::AbstractVector{S}) where {T<:NumberNotSeries, S<:NumberNotSeries}
108+
@assert length(dx) == get_numvars()
109+
suma = Taylor1( zero(a[0][0][1])*one(dx[1]), a.order)
110+
suma.coeffs .= evaluate.(a[:], Ref(dx))
111+
return suma
112+
end
113+
114+
function evaluate(a::Taylor1{TaylorN{T}}, dx::AbstractVector{TaylorN{T}}) where {T<:NumberNotSeries}
108115
@assert length(dx) == get_numvars()
109116
suma = Taylor1( zero(a[0]), a.order)
110117
suma.coeffs .= evaluate.(a[:], Ref(dx))

test/aqua.jl

-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ using Aqua
1818
for method_ambiguity in ambs
1919
@show method_ambiguity
2020
end
21-
if VERSION < v"1.10.0-DEV"
22-
@test length(ambs) == 0
23-
end
2421
end
2522

2623
@testset "Aqua tests (additional)" begin

0 commit comments

Comments
 (0)