From 070d7ec8f53ab8eccd99d9d457fb89425279d5a8 Mon Sep 17 00:00:00 2001 From: kalmar Date: Tue, 6 Jun 2017 16:20:20 +0200 Subject: [PATCH] rename main to compute_orbit_data --- OrbitDecomposition.jl | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/OrbitDecomposition.jl b/OrbitDecomposition.jl index f96a410..4ce7530 100644 --- a/OrbitDecomposition.jl +++ b/OrbitDecomposition.jl @@ -249,10 +249,7 @@ function Uπ_matrices(P_matrices; orth=orthSVD) return U_p_matrices end -function main(N::Int) - name = "test" - # SOutF$(N)_E4 - +function compute_orbit_data(name::String, N::Int) isdir(name) || mkdir(name) SOutFN = AutGroup(FreeGroup(N), special=true, outer=true) @@ -302,5 +299,3 @@ function main(N::Int) save(joinpath(name, "U_pis.jld"), "Uπs", Uπs, "dims", dimensions) end - -@time main(4)