Skip to content

Commit

Permalink
"fix" wreath product
Browse files Browse the repository at this point in the history
  • Loading branch information
fieker committed Sep 23, 2020
1 parent 2956dba commit 57984b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/GaloisGrp.jl
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ function galois_group(K::AnticNumberField, extra::Int = 5)
G = symmetric_group(degree(K))
S = G
for b = bs
W = wreath_product(symmetric_group(length(b[1])), symmetric_group(length(b)))
W = isomorphic_perm_group(wreath_product(symmetric_group(length(b[1])), symmetric_group(length(b))))[1]
s = S(vcat(b...))
G = intersect(G, W^s)[1]
end
Expand Down

2 comments on commit 57984b3

@fieker
Copy link
Contributor Author

@fieker fieker commented on 57984b3 Sep 23, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/21864

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.5.0 -m "<description of version>" 57984b34e34c5b6b9c919e113befd51b7ab2a10e
git push origin v0.5.0

Please sign in to comment.