From dcec516ce608452503deb13f8cbe90248809859a Mon Sep 17 00:00:00 2001 From: CompatHelper Julia Date: Tue, 10 Dec 2024 10:00:34 +0000 Subject: [PATCH 1/3] CompatHelper: bump compat for ClassicalOrthogonalPolynomials to 0.14, (keep existing compat) --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index e65c973..13dfe18 100644 --- a/Project.toml +++ b/Project.toml @@ -20,7 +20,7 @@ SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b" [compat] ArrayLayouts = "1" BandedMatrices = "0.17, 1" -ClassicalOrthogonalPolynomials = "0.13" +ClassicalOrthogonalPolynomials = "0.13, 0.14" ContinuumArrays = "0.18" FillArrays = "1" HypergeometricFunctions = "0.3.4" From 663340980dcad53052e65cc6148140687afb0a43 Mon Sep 17 00:00:00 2001 From: Sheehan Olver Date: Tue, 10 Dec 2024 10:02:02 +0000 Subject: [PATCH 2/3] Update Project.toml --- Project.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Project.toml b/Project.toml index 13dfe18..cf8ef69 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "SemiclassicalOrthogonalPolynomials" uuid = "291c01f3-23f6-4eb6-aeb0-063a639b53f2" authors = ["Sheehan Olver "] -version = "0.5.9" +version = "0.5.10" [deps] ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a" @@ -24,8 +24,8 @@ ClassicalOrthogonalPolynomials = "0.13, 0.14" ContinuumArrays = "0.18" FillArrays = "1" HypergeometricFunctions = "0.3.4" -InfiniteArrays = "0.14" -InfiniteLinearAlgebra = "0.8" +InfiniteArrays = "0.14, 0.15" +InfiniteLinearAlgebra = "0.8, 0.9" LazyArrays = "2" QuasiArrays = "0.11" SpecialFunctions = "1.0, 2" From 6308d66ecd6619c7a712d9dafc9efa615bd18a6d Mon Sep 17 00:00:00 2001 From: Daniel VandenHeuvel <95613936+DanielVandH@users.noreply.github.com> Date: Tue, 10 Dec 2024 12:12:06 +0000 Subject: [PATCH 3/3] Use floats --- test/test_neg1b.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_neg1b.jl b/test/test_neg1b.jl index 881a238..f6407f8 100644 --- a/test/test_neg1b.jl +++ b/test/test_neg1b.jl @@ -83,7 +83,7 @@ end P = SemiclassicalJacobi.(t, -1//2:13//2, -1:6, -1//2:13//2) @test P isa SemiclassicalOrthogonalPolynomials.SemiclassicalJacobiFamily for (i, p) in enumerate(P) - @test jacobimatrix(p)[1:100, 1:100] ≈ jacobimatrix(SemiclassicalJacobi(t, (-1//2:13//2)[i], (-1:6)[i], (-1//2:13//2)[i]))[1:100, 1:100] + @test jacobimatrix(p)[1:100, 1:100] ≈ jacobimatrix(SemiclassicalJacobi(t, (-1/2:13/2)[i], (-1:6)[i], (-1/2:13/2)[i]))[1:100, 1:100] end end