From 2b35aecbdaf3842cac813acd2d82a0d02f8909d1 Mon Sep 17 00:00:00 2001 From: Daniel VandenHeuvel <95613936+DanielVandH@users.noreply.github.com> Date: Tue, 11 Nov 2025 13:09:10 +0000 Subject: [PATCH] Remove --- Project.toml | 2 +- src/ratios.jl | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index 6cb790d0..b83888ef 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "ClassicalOrthogonalPolynomials" uuid = "b30e2e7b-c4ee-47da-9d5f-2c5c27239acd" -version = "0.15.10" +version = "0.15.11" authors = ["Sheehan Olver "] [deps] diff --git a/src/ratios.jl b/src/ratios.jl index 9751be40..2efc0345 100644 --- a/src/ratios.jl +++ b/src/ratios.jl @@ -11,7 +11,6 @@ mutable struct OrthogonalPolynomialRatio{T, PP<:AbstractQuasiMatrix{T}} <: Abstr datasize::Tuple{Int} function OrthogonalPolynomialRatio{T, PP}(P::PP, x::T) where {T,PP<:AbstractQuasiMatrix{T}} - μ = inv(sqrt(sum(orthogonalityweight(P)))) new{T, PP}(P, x, [Base.unsafe_getindex(P,x,1)/Base.unsafe_getindex(P,x,2)], (1,)) end end