From a61cff986ed5f98c7be6ee334d4c7cf9e0a6c7db Mon Sep 17 00:00:00 2001 From: kalmarek Date: Sun, 27 Aug 2017 21:25:12 +0200 Subject: [PATCH] =?UTF-8?q?verbose&check=20for=20possible=20rank=20reducti?= =?UTF-8?q?on=20in=20U=CF=80s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/OrbitDecomposition.jl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/OrbitDecomposition.jl b/src/OrbitDecomposition.jl index aeadd10..2cd28ec 100644 --- a/src/OrbitDecomposition.jl +++ b/src/OrbitDecomposition.jl @@ -251,6 +251,9 @@ function compute_orbit_data{T<:GroupElem}(logger, name::String, G::Nemo.Group, S info(logger, "dimensions = $dimensions") @assert dot(multiplicities, dimensions) == sizes[radius] - save(joinpath(name, "U_pis.jld"), "Uπs", Uπs, "spUπs", sparsify.(Uπs), "dims", dimensions) + save(joinpath(name, "U_pis.jld"), + "Uπs", Uπs, + "spUπs", sparsify!.(deepcopy(Uπs), check=true, verbose=true), + "dims", dimensions) return 0 end