Skip to content

Commit 32b28cf

Browse files
authored
FastTransforms v0.17 (#223)
* FastTransforms v0.17 * Update jacobi.jl * v0.14.1
1 parent 10c1bb7 commit 32b28cf

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ClassicalOrthogonalPolynomials"
22
uuid = "b30e2e7b-c4ee-47da-9d5f-2c5c27239acd"
33
authors = ["Sheehan Olver <[email protected]>"]
4-
version = "0.14.0"
4+
version = "0.14.1"
55

66
[deps]
77
ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"
@@ -42,7 +42,7 @@ DomainSets = "0.6, 0.7"
4242
DynamicPolynomials = "0.6"
4343
FFTW = "1.1"
4444
FastGaussQuadrature = "1"
45-
FastTransforms = "0.16.6"
45+
FastTransforms = "0.16.6, 0.17"
4646
FillArrays = "1"
4747
HypergeometricFunctions = "0.3.4"
4848
InfiniteArrays = " 0.14, 0.15"
@@ -53,7 +53,7 @@ LazyBandedMatrices = "0.10, 0.11"
5353
MutableArithmetics = "1"
5454
QuasiArrays = "0.11"
5555
RecurrenceRelationshipArrays = "0.1.2"
56-
RecurrenceRelationships = "0.1.1"
56+
RecurrenceRelationships = "0.1.1, 0.2"
5757
SpecialFunctions = "1.0, 2"
5858
julia = "1.10"
5959

src/classical/jacobi.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,8 @@ basis_singularities(w::JacobiWeight) = Weighted(Jacobi(w.a, w.b))
217217
computes the `n`-th Jacobi polynomial, orthogonal with
218218
respec to `(1-x)^a*(1+x)^b`, at `z`.
219219
"""
220-
jacobip(n::Integer, a, b, z) = Base.unsafe_getindex(Jacobi{polynomialtype(typeof(a), typeof(b), typeof(z))}(a,b), z, n+1)
221-
normalizedjacobip(n::Integer, a, b, z) = Base.unsafe_getindex(Normalized(Jacobi{polynomialtype(typeof(a), typeof(b), typeof(z))}(a,b)), z, n+1)
220+
jacobip(n::Integer, a, b, z) = Base.unsafe_getindex(Jacobi{polynomialtype(promote_type(typeof(a), typeof(b)), typeof(z))}(a,b), z, n+1)
221+
normalizedjacobip(n::Integer, a, b, z) = Base.unsafe_getindex(Normalized(Jacobi{polynomialtype(promote_type(typeof(a), typeof(b)), typeof(z))}(a,b)), z, n+1)
222222

223223
OrthogonalPolynomial(w::JacobiWeight) = Jacobi(w.a, w.b)
224224
orthogonalityweight(P::Jacobi) = JacobiWeight(P.a, P.b)

0 commit comments

Comments
 (0)