Skip to content

Commit 1aa7ae8

Browse files
fix issue 186
1 parent 95cec82 commit 1aa7ae8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doubletriple/double.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ end
169169

170170
function DWTimesDW2(xₕᵢ::T, xₗₒ::T, yₕᵢ::T, yₗₒ::T) where {T<:AbstractFloat}
171171
cₕᵢ, c1 = Fast2Mult(xₕᵢ, yₕᵢ)
172-
t0 = xₗₒ * yₗₒ
172+
t0 = xₕᵢ * yₗₒ
173173
c2 = fma(xₗₒ, yₕᵢ, t0)
174174
c3 = c1 + c2
175175
zₕᵢ, zₗₒ = Fast2Sum(cₕᵢ, c3)

0 commit comments

Comments
 (0)