Skip to content
This repository was archived by the owner on Apr 26, 2021. It is now read-only.

Commit 65a269e

Browse files
committed
remove type restriction on eps(T)
1 parent 433f7a1 commit 65a269e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GenericSVD.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ This proceeds by iteratively finding the lowest strictly-bidiagonal submatrix, i
9696
```
9797
then applying a Golub-Kahan QR iteration.
9898
"""
99-
function svd!{T<:Real}(B::Bidiagonal{T}, U=nothing, Vt=nothing, ɛ::T = eps(T))
99+
function svd!{T<:Real}(B::Bidiagonal{T}, U=nothing, Vt=nothing, ɛ=eps(T))
100100
n = size(B, 1)
101101
n₂ = n
102102

0 commit comments

Comments
 (0)