@@ -397,31 +397,29 @@ end
397397
398398@static if VERSION < v " 1.7beta"
399399 function init_cacheval (alg:: FastQRFactorization{Val{false}} , A, b, u, Pl, Pr,
400- maxiters, abstol, reltol, verbose)
400+ maxiters, abstol, reltol, verbose)
401401 ws = QRWYWs (A; blocksize = alg. blocksize)
402402 return WorkspaceAndFactors (ws, LinearAlgebra. QRCompactWY (LAPACK. geqrt! (ws, A)... ))
403403 end
404404
405405 function init_cacheval (:: FastQRFactorization{Val{true}} , A, b, u, Pl, Pr,
406- maxiters, abstol, reltol, verbose)
406+ maxiters, abstol, reltol, verbose)
407407 ws = QRpWs (A)
408408 return WorkspaceAndFactors (ws, LinearAlgebra. QRPivoted (LAPACK. geqp3! (ws, A)... ))
409409 end
410410else
411411 function init_cacheval (alg:: FastQRFactorization{NoPivot} , A, b, u, Pl, Pr,
412- maxiters, abstol, reltol, verbose)
412+ maxiters, abstol, reltol, verbose)
413413 ws = QRWYWs (A; blocksize = alg. blocksize)
414414 return WorkspaceAndFactors (ws, LinearAlgebra. QRCompactWY (LAPACK. geqrt! (ws, A)... ))
415415 end
416416 function init_cacheval (:: FastQRFactorization{ColumnNorm} , A, b, u, Pl, Pr,
417- maxiters, abstol, reltol, verbose)
417+ maxiters, abstol, reltol, verbose)
418418 ws = QRpWs (A)
419419 return WorkspaceAndFactors (ws, LinearAlgebra. QRPivoted (LAPACK. geqp3! (ws, A)... ))
420420 end
421421end
422422
423-
424-
425423function SciMLBase. solve (cache:: LinearCache , alg:: FastQRFactorization{P} ) where {P}
426424 A = cache. A
427425 A = convert (AbstractMatrix, A)
0 commit comments