Skip to content

Commit 251e691

Browse files
committed
Doesn't really do much
1 parent 1698661 commit 251e691

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ClassicalOrthogonalPolynomials.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ function gaussradau(P::Monic{T}, n::Integer, endpt) where {T}
326326
α, β = diagonaldata(J), supdiagonaldata(J)
327327
endpt = T(endpt)
328328
p0, p1 = P[endpt,n:n+1]
329-
a = (endpt - β[end]^2 * p0 / p1)::T
329+
a = endpt - β[end]^2 * p0 / p1
330330
α′ = vcat(@view(α[begin:end-1]), a)
331331
J′ = SymTridiagonal(α′, β)
332332
x, w = golubwelsch(J′) # not inferred

0 commit comments

Comments
 (0)