Add verbosity

This commit is contained in:
Nuwan Yapa 2025-01-06 18:49:35 -05:00
parent 365ec8196d
commit 8e435c0533
1 changed files with 1 additions and 0 deletions

View File

@ -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)