Skip to content

Commit

Permalink
Fix typo in GModule
Browse files Browse the repository at this point in the history
  • Loading branch information
lgoettgens committed Sep 20, 2024
1 parent 2dc5df5 commit 6dcf895
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions experimental/GModule/src/GModule.jl
Original file line number Diff line number Diff line change
Expand Up @@ -946,11 +946,11 @@ function gmodule(k::Nemo.FinField, C::GModule{<:Any, <:AbstractAlgebra.FPModule{
end

function Hecke.frobenius(K::FinField, i::Int=1)
MapFromFunc(K, K, x->Hecke.frobenius(x, i), y -> Hecke.frobenius(x, degree(K)-i))
MapFromFunc(K, K, x->Hecke.frobenius(x, i), y -> Hecke.frobenius(y, degree(K)-i))
end

function Hecke.absolute_frobenius(K::FinField, i::Int=1)
MapFromFunc(K, K, x->Hecke.absolute_frobenius(x, i), y -> Hecke.absolute_frobenius(x, absolute_degree(K)-i))
MapFromFunc(K, K, x->Hecke.absolute_frobenius(x, i), y -> Hecke.absolute_frobenius(y, absolute_degree(K)-i))
end

@doc raw"""
Expand Down

0 comments on commit 6dcf895

Please sign in to comment.