Skip to content

Commit

Permalink
Try fixing a test
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasvarga committed Jan 16, 2024
1 parent 3817a9a commit f52ed84
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ module Runtests
using Test, MatrixEquations

@testset "Test MatrixEquations.jl" begin
# include("test_clyap.jl")
# include("test_dlyap.jl")
# include("test_meutil.jl")
# include("test_riccati.jl")
# include("test_sylvester.jl")
# include("test_sylvkr.jl")
# include("test_cplyap.jl")
# include("test_dplyap.jl")
# include("test_mecondest.jl")
include("test_clyap.jl")
include("test_dlyap.jl")
include("test_meutil.jl")
include("test_riccati.jl")
include("test_sylvester.jl")
include("test_sylvkr.jl")
include("test_cplyap.jl")
include("test_dplyap.jl")
include("test_mecondest.jl")
include("test_iterative.jl")
end

Expand Down
2 changes: 1 addition & 1 deletion test/test_iterative.jl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ using IterativeSolvers

# 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)), reltol)
@show info
(info.flag == 1 && info.iter <= 2) || (@show info)
@test info.flag == 1 && info.iter <= 2

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

2 comments on commit f52ed84

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

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

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.4.0 -m "<description of version>" f52ed84ac5886a267ea91e8b4ee4c103bad356d0
git push origin v2.4.0

Please sign in to comment.