We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b710816 commit b80118aCopy full SHA for b80118a
1 file changed
src/implementations/orthnull.jl
@@ -115,7 +115,7 @@ function left_orth_svd!(A, VC, alg, trunc::Nothing=nothing)
115
end
116
function left_orth_svd!(A, VC, alg, trunc)
117
alg′ = select_algorithm(svd_compact!, A, alg)
118
- alg_trunc = select_algorithm(svd_trunc!, A; trunc, alg=alg′)
+ alg_trunc = select_algorithm(svd_trunc!, A, alg′; trunc)
119
V, C = VC
120
S = Diagonal(initialize_output(svd_vals!, A, alg_trunc.alg))
121
U, S, Vᴴ = svd_trunc!(A, (V, S, C), alg_trunc)
@@ -156,7 +156,7 @@ function right_orth_svd!(A, CVᴴ, alg, trunc::Nothing=nothing)
156
157
function right_orth_svd!(A, CVᴴ, alg, trunc)
158
159
160
C, Vᴴ = CVᴴ
161
162
U, S, Vᴴ = svd_trunc!(A, (C, S, Vᴴ), alg_trunc)
0 commit comments