From 31715701cca2f62385835c6fd3e76ac74f937064 Mon Sep 17 00:00:00 2001 From: kalmarek Date: Tue, 7 Nov 2017 09:41:45 +0100 Subject: [PATCH] de-thread Projections to avoid UndefRefError: access to undefined reference in rankOne_projections(::WreathProduct) --- src/Projections.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Projections.jl b/src/Projections.jl index 5755f30..78c2c3f 100644 --- a/src/Projections.jl +++ b/src/Projections.jl @@ -128,7 +128,7 @@ function minimalprojections(G::PermutationGroup, T::Type=Rational{Int}) chars = [PropertyT.PermCharacter(p) for p in parts] min_projs = Vector{eltype(RGidems)}(l) - Threads.@threads for i in 1:l + for i in 1:l chi = PropertyT.PermCharacter(parts[i]) min_projs[i] = rankOne_projection(chi,RGidems)*central_projection(RG,chi) end