From 2866e2ea8eda63b1c77a202512fd7cdd05906418 Mon Sep 17 00:00:00 2001 From: Gertian Date: Tue, 6 Aug 2024 18:03:33 +0300 Subject: [PATCH] Update grassmann.jl fixed tiny bug --- src/grassmann.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/grassmann.jl b/src/grassmann.jl index 0f63c6f..ba9b9fc 100644 --- a/src/grassmann.jl +++ b/src/grassmann.jl @@ -56,7 +56,7 @@ function Base.getproperty(Δ::GrassmannTangent, sym::Symbol) elseif sym ∈ (:U, :S, :V) v = Base.getfield(Δ, sym) v !== nothing && return v - U, S, V, = tsvd(Δ.Z) + U, S, V, = tsvd(Δ.Z, alg = SVD()) Base.setfield!(Δ, :U, U) Base.setfield!(Δ, :S, S) Base.setfield!(Δ, :V, V)