Skip to content

Commit 917c7fa

Browse files
committed
refix tests
1 parent bd63c8f commit 917c7fa

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

test/orthnull.jl

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ using TestExtras
44
using StableRNGs
55
using LinearAlgebra: LinearAlgebra, I, mul!
66
using MatrixAlgebraKit: TruncationKeepAbove, TruncationKeepBelow
7-
using MatrixAlgebraKit: LAPACK_SVDAlgorithm, check_input, copy_input, default_algorithm,
7+
using MatrixAlgebraKit: LAPACK_SVDAlgorithm, check_input, copy_input, default_svd_algorithm,
88
initialize_output
99

1010
# Used to test non-AbstractMatrix codepaths.
@@ -39,9 +39,8 @@ end
3939
function MatrixAlgebraKit.check_input(::typeof(right_orth!), A::LinearMap, VC)
4040
return check_input(right_orth!, parent(A), parent.(VC))
4141
end
42-
function MatrixAlgebraKit.default_algorithm(::typeof(svd_compact!),
43-
::Type{LinearMap{A}}) where {A}
44-
return default_algorithm(svd_compact!, A)
42+
function MatrixAlgebraKit.default_svd_algorithm(::Type{LinearMap{A}}; kwargs...) where {A}
43+
return default_svd_algorithm(A; kwargs...)
4544
end
4645
function MatrixAlgebraKit.initialize_output(::typeof(svd_compact!), A::LinearMap,
4746
alg::LAPACK_SVDAlgorithm)

0 commit comments

Comments
 (0)