don't check correctness of permutations in preps

This commit is contained in:
kalmarek 2018-08-08 19:38:44 +02:00
parent dfb76c1e5e
commit 4f2caf84cd
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ function perm_reps(G::Group, E::Vector, E_rdict=GroupRings.reverse_dict(E))
permG = PermutationGroup(length(E))
Threads.@threads for i in 1:l
preps[i] = permG(PropertyT.perm_repr(elts[i], E, E_rdict))
preps[i] = permG(PropertyT.perm_repr(elts[i], E, E_rdict), false)
end
return Dict(elts[i]=>preps[i] for i in 1:l)