diff --git a/Project.toml b/Project.toml index 6cb790d..b83888e 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 9751be4..2efc034 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