diff --git a/helper.jl b/helper.jl index e8e3da1..c921493 100644 --- a/helper.jl +++ b/helper.jl @@ -60,6 +60,7 @@ function gram_schmidt!(vecs, ws, threshold=1e-5; verbose=false) vecs[i] ./= sqrt(norm(i)) end + verbose && println("Absolute singular values = $(round.(c_singular_values(vecs, ws); sigdigits=1))") target_dim = c_rank(vecs, ws, threshold) verbose && println("Target dimensionality = $target_dim")