Skip to content

Commit 950fcad

Browse files
committed
remove stray tsvd
1 parent f3e7687 commit 950fcad

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/grassmann.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ end
3131

3232
# output type of U, S, V in tsvd
3333
function _tsvd_types(Z::AbstractTensorMap)
34-
TUSV = Core.Compiler.return_type(tsvd, Tuple{typeof(Z)})
35-
TU, TS, TV, = TUSV.types
34+
TUSV = Core.Compiler.return_type(svd_compact, Tuple{typeof(Z)})
35+
TU, TS, TV = TUSV.types
3636
return TU, TS, TV
3737
end
3838

@@ -59,7 +59,7 @@ function Base.getproperty(Δ::GrassmannTangent, sym::Symbol)
5959
elseif sym (:U, :S, :V)
6060
v = Base.getfield(Δ, sym)
6161
v !== nothing && return v
62-
U, S, V, = svd_compact.Z)
62+
U, S, V = svd_compact.Z)
6363
Base.setfield!(Δ, :U, U)
6464
Base.setfield!(Δ, :S, S)
6565
Base.setfield!(Δ, :V, V)

0 commit comments

Comments
 (0)