We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent deaae75 commit 9625a61Copy full SHA for 9625a61
src/methods.jl
@@ -157,7 +157,7 @@ end
157
158
# Compute coefficients for the method
159
function _coefs(grid::AbstractVector{<:Real}, p::Integer, q::Integer)
160
- # For high precision on the \ we use Rational, and to prevent overfloats we use Int128
+ # For high precision on the \ we use Rational, and to prevent overflows we use Int128
161
# At the end we go to Float64 for fast floating point math (rather than rational math)
162
C = [Rational{Int128}(g^i) for i in 0:(p - 1), g in grid]
163
x = zeros(Rational{Int128}, p)
0 commit comments