Skip to content

Commit

Permalink
Eliminating some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasvarga committed Oct 27, 2023
1 parent b9f9098 commit 0ddb1e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_iterative.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ using IterativeSolvers
n = 10
T = ComplexF32
T = Double64
@testset "Matrix{$T}" for T in (Float32, Float64, ComplexF32, ComplexF64, BigFloat, Double64)
@testset "Matrix{$T}" for T in (Float64, ComplexF64, BigFloat, Double64)
A = rand(T, n, n)
#A = A' * A + I
b = rand(T, n)
Expand Down Expand Up @@ -81,7 +81,7 @@ using IterativeSolvers
m = 3; n = 5
Ty = Float64
reltol = 1.e-7
@testset "Matrix{$T}" for T in (Float32, Float64, BigFloat, Double64)
@testset "Matrix{$T}" for T in (Float64, BigFloat, Double64)
# T-Lyapunov
# real case
A = rand(Ty,m,n);
Expand Down

2 comments on commit 0ddb1e3

@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.

Error while trying to register: "Tag with name v2.3.1 already exists and points to a different commit"

Please sign in to comment.