Skip to content

Commit e77594f

Browse files
committed
tolerate atol and rtol kwargs from LinearAlgebra 1.13
1 parent 4eed112 commit e77594f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/svd.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -639,6 +639,8 @@ function LinearAlgebra.svd!(
639639
# To avoid breaking on <Julia 1.3, the `alg` keyword doesn't do anything. Once we drop support for Julia 1.2
640640
# and below, we can make the keyword argument work correctly
641641
alg = nothing,
642+
atol = 0,
643+
rtol = 0
642644
) where {T}
643645

644646
m, n = size(A)

0 commit comments

Comments
 (0)