Skip to content

Commit

Permalink
fix argument order
Browse files Browse the repository at this point in the history
  • Loading branch information
Jutho committed Jan 9, 2020
1 parent 36a34d1 commit a797e54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "KrylovKit"
uuid = "0b1a1467-8014-51b9-945f-bf0ae24f4b77"
authors = ["Jutho Haegeman"]
version = "0.4.0"
version = "0.4.1"

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand Down
2 changes: 1 addition & 1 deletion src/linsolve/gmres.jl
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ function linsolve(operator, b, x₀, alg::GMRES, a₀::Number = 0, a₁::Number
for i = 1:k
rmul!(V, gs[i]')
end
r = mul!(r, y[k+1], V[k+1])
r = mul!(r, V[k+1], y[k+1])
else
# Recompute residual and its norm explicitly, to ensure that no
# numerical errors have accumulated
Expand Down

2 comments on commit a797e54

@Jutho
Copy link
Owner Author

@Jutho Jutho commented on a797e54 Jan 10, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/7749

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.4.1 -m "<description of version>" a797e54d55c38276e60c2604b13512f28d6e564b
git push origin v0.4.1

Please sign in to comment.