Skip to content

Commit

Permalink
Remove Int^fmpz
Browse files Browse the repository at this point in the history
  • Loading branch information
thofma committed Mar 15, 2021
1 parent d763a60 commit f8808df
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "Hecke"
uuid = "3e1990a7-5d81-5526-99ce-9ba3ff248f21"
version = "0.9.6"
version = "0.9.7"

[deps]
AbstractAlgebra = "c3fe647b-3220-5bb0-a1ea-a7954cac585d"
Expand Down
4 changes: 2 additions & 2 deletions src/FieldFactory/fields.jl
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ function fields(a::Int, b::Int, absolute_bound::fmpz; using_direct_product::Bool
end
else
#p is not wildly ramified. Then we only have the boring bound...
d = minimum(keys(factor(invariants[end]).fac))
d = Int(minimum(keys(factor(invariants[end]).fac)))
cd1 = p^((d-1)*div(pinvariants, d))
if cd > cd1
cd = cd1
Expand Down Expand Up @@ -634,4 +634,4 @@ function fields(a::Int, b::Int, absolute_bound::fmpz; using_direct_product::Bool
end
Id = GAP.Globals.IdGroup(G)
return field_extensions(list, absolute_bound, Id, invariants, only_real, unramified_outside = unramified_outside)
end
end

2 comments on commit f8808df

@thofma
Copy link
Owner Author

@thofma thofma commented on f8808df Mar 15, 2021

Choose a reason for hiding this comment

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

@JuliaRegistrator register()

@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/31995

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.9.7 -m "<description of version>" f8808dfdbcb0de5b29a7921db1d8c0560090433f
git push origin v0.9.7

Also, note the warning: Version 0.9.7 skips over 0.9.6
This can be safely ignored. However, if you want to fix this you can do so. Call register() again after making the fix. This will update the Pull request.

Please sign in to comment.