From 90fa93fd9f5eef739e532a0392fb65c9c2474c49 Mon Sep 17 00:00:00 2001 From: Sheehan Olver Date: Mon, 16 Dec 2024 16:09:37 +0000 Subject: [PATCH 1/3] FastTransforms v0.17 --- Project.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index ec6119b..7bb4476 100644 --- a/Project.toml +++ b/Project.toml @@ -42,7 +42,7 @@ DomainSets = "0.6, 0.7" DynamicPolynomials = "0.6" FFTW = "1.1" FastGaussQuadrature = "1" -FastTransforms = "0.16.6" +FastTransforms = "0.16.6, 0.17" FillArrays = "1" HypergeometricFunctions = "0.3.4" InfiniteArrays = " 0.14, 0.15" @@ -53,7 +53,7 @@ LazyBandedMatrices = "0.10, 0.11" MutableArithmetics = "1" QuasiArrays = "0.11" RecurrenceRelationshipArrays = "0.1.2" -RecurrenceRelationships = "0.1.1" +RecurrenceRelationships = "0.1.1, 0.2" SpecialFunctions = "1.0, 2" julia = "1.10" From 021c197d80d7a058471be65e6274732839e0ee11 Mon Sep 17 00:00:00 2001 From: Sheehan Olver Date: Fri, 20 Dec 2024 13:30:04 +0000 Subject: [PATCH 2/3] Update jacobi.jl --- src/classical/jacobi.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/classical/jacobi.jl b/src/classical/jacobi.jl index 980b5a9..556ea54 100644 --- a/src/classical/jacobi.jl +++ b/src/classical/jacobi.jl @@ -217,8 +217,8 @@ basis_singularities(w::JacobiWeight) = Weighted(Jacobi(w.a, w.b)) computes the `n`-th Jacobi polynomial, orthogonal with respec to `(1-x)^a*(1+x)^b`, at `z`. """ -jacobip(n::Integer, a, b, z) = Base.unsafe_getindex(Jacobi{polynomialtype(typeof(a), typeof(b), typeof(z))}(a,b), z, n+1) -normalizedjacobip(n::Integer, a, b, z) = Base.unsafe_getindex(Normalized(Jacobi{polynomialtype(typeof(a), typeof(b), typeof(z))}(a,b)), z, n+1) +jacobip(n::Integer, a, b, z) = Base.unsafe_getindex(Jacobi{polynomialtype(promote_type(typeof(a), typeof(b)), typeof(z))}(a,b), z, n+1) +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) OrthogonalPolynomial(w::JacobiWeight) = Jacobi(w.a, w.b) orthogonalityweight(P::Jacobi) = JacobiWeight(P.a, P.b) From 27a2b670ae9b754cc3c487904775637c64185402 Mon Sep 17 00:00:00 2001 From: Sheehan Olver Date: Thu, 9 Jan 2025 11:59:00 +0000 Subject: [PATCH 3/3] v0.14.1 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 7bb4476..c42a20c 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "ClassicalOrthogonalPolynomials" uuid = "b30e2e7b-c4ee-47da-9d5f-2c5c27239acd" authors = ["Sheehan Olver "] -version = "0.14.0" +version = "0.14.1" [deps] ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"