comment out sparsification

This commit is contained in:
kalmar 2017-06-08 21:40:35 +02:00
parent 7cc0bff40d
commit e76f8f0c60
1 changed files with 3 additions and 3 deletions

View File

@ -66,7 +66,7 @@ function init_OrbitData(name::String)
splap² = GroupRings.mul(splap, splap, pm);
Uπs = load(joinpath(name, "U_pis.jld"), "Uπs");
Uπs = sparsify.(Uπs);
# Uπs = sparsify.(Uπs);
#dimensions of the corresponding πs:
dims = load(joinpath(name, "U_pis.jld"), "dims")
@ -85,8 +85,8 @@ end
function transform{T}(U::AbstractArray{T,2}, V::AbstractArray{T,2}, eps=eps(T))
w = U'*V*U
sparsify!(w, eps)
dropzeros!(w)
# sparsify!(w, eps)
# dropzeros!(w)
return w
end