Skip to content

Commit

Permalink
Fix DoubleFloat error
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasvarga committed Oct 26, 2023
1 parent 801c7ac commit cfc7089
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/test_iterative.jl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ using IterativeSolvers
@test info.flag == 1

# If you start from the exact solution, you should converge immediately
x, info = cgls(A, b; x0 = A \ b, abstol=n*n*eps(real(T)))
x, info = cgls(A, b; x0 = A \ b, abstol=n*n*eps(real(T)), reltol)
display(info)
@test info.flag == 1 && info.iter <= 2

# All-zeros rhs should give all-zeros lhs
Expand Down

2 comments on commit cfc7089

@andreasvarga
Copy link
Owner Author

Choose a reason for hiding this comment

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

@JuliaRegistrator register()

@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/94157

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 the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v2.3.1 -m "<description of version>" cfc7089845f5c1e8cc50356cfa47483788fd642b
git push origin v2.3.1

Please sign in to comment.