From 8e435c0533cb58632bbd0259f730c26ec9720fd8 Mon Sep 17 00:00:00 2001 From: Nuwan Yapa Date: Mon, 6 Jan 2025 18:49:35 -0500 Subject: [PATCH] Add verbosity --- helper.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/helper.jl b/helper.jl index 40656e3..e8e3da1 100644 --- a/helper.jl +++ b/helper.jl @@ -61,6 +61,7 @@ function gram_schmidt!(vecs, ws, threshold=1e-5; verbose=false) end target_dim = c_rank(vecs, ws, threshold) + verbose && println("Target dimensionality = $target_dim") for i in eachindex(vecs) for j in (i + 1):length(vecs)