@@ -17,12 +17,12 @@ _right_orth_lq!(x, CVᴴ; kwargs...) = right_orth!(x, CVᴴ; alg = :lq, kwargs..
1717_right_orth_polar (x; kwargs... ) = right_orth (x; alg = :polar , kwargs... )
1818_right_orth_polar! (x, CVᴴ; kwargs... ) = right_orth! (x, CVᴴ; alg = :polar , kwargs... )
1919
20- function test_orthnull (T:: Type , sz; test_nullity = true , test_orthnull = true , kwargs... )
20+ function test_orthnull (T:: Type , sz; test_nullity = true , kwargs... )
2121 summary_str = testargs_summary (T, sz)
2222 return @testset " orthnull $summary_str " begin
23- test_orthnull && test_left_orthnull (T, sz; kwargs... )
23+ test_left_orthnull (T, sz; kwargs... )
2424 test_nullity && test_left_nullity (T, sz; kwargs... )
25- test_orthnull && test_right_orthnull (T, sz; kwargs... )
25+ test_right_orthnull (T, sz; kwargs... )
2626 test_nullity && test_right_nullity (T, sz; kwargs... )
2727 end
2828end
@@ -276,9 +276,9 @@ function test_right_orthnull(
276276
277277 # passing an algorithm
278278 C, Vᴴ = @testinferred right_orth (A; alg = MatrixAlgebraKit. default_lq_algorithm (A))
279- Nᴴ = @testinferred right_null (A; alg = :lq , positive = true )
280279 @test C isa typeof (A) && size (C) == (m, minmn)
281280 @test Vᴴ isa typeof (A) && size (Vᴴ) == (minmn, n)
281+ Nᴴ = @testinferred right_null (A; alg = :lq , positive = true )
282282 @test eltype (Nᴴ) == eltype (A) && size (Nᴴ) == (n - minmn, n)
283283 @test C * Vᴴ ≈ A
284284 @test isisometric (Vᴴ; side = :right )
0 commit comments