-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
move code from Oscar.jl/experimental/GModule/Misc.jl
here
#1456
Open
ThomasBreuer
wants to merge
2
commits into
thofma:master
Choose a base branch
from
ThomasBreuer:TB_move_from_oscar
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,6 +84,36 @@ | |
return abelian_group(FinGenAbGroup, M, name=name) | ||
end | ||
|
||
function abelian_group(M::Generic.FreeModule{ZZRingElem}) | ||
A = free_abelian_group(rank(M)) | ||
return A, MapFromFunc(A, M, x->M(x.coeff), y->A(y.v)) | ||
end | ||
|
||
#TODO: for modern fin. fields as well | ||
function abelian_group(M::AbstractAlgebra.FPModule{fqPolyRepFieldElem}) | ||
k = base_ring(M) | ||
A = abelian_group([characteristic(k) for i = 1:dim(M)*degree(k)]) | ||
n = degree(k) | ||
function to_A(m::AbstractAlgebra.FPModuleElem{fqPolyRepFieldElem}) | ||
a = ZZRingElem[] | ||
for i=1:dim(M) | ||
c = m[i] | ||
for j=0:n-1 | ||
push!(a, coeff(c, j)) | ||
end | ||
end | ||
return A(a) | ||
end | ||
function to_M(a::FinGenAbGroupElem) | ||
m = fqPolyRepFieldElem[] | ||
for i=1:dim(M) | ||
push!(m, k([a[j] for j=(i-1)*n+1:i*n])) | ||
end | ||
return M(m) | ||
end | ||
return A, MapFromFunc(A, M, to_M, to_A) | ||
end | ||
|
||
function abelian_group(::Type{FinGenAbGroup}, M::AbstractMatrix{<:IntegerUnion}; name::String = "") | ||
return abelian_group(matrix(FlintZZ, M), name=name) | ||
end | ||
|
@@ -662,6 +692,27 @@ | |
return _direct_product(:sum, G...; task = task, kwargs...) | ||
end | ||
|
||
@doc raw""" | ||
direct_sum(G::FinGenAbGroup, H::FinGenAbGroup, V::Vector{<:Map{FinGenAbGroup, FinGenAbGroup}}) | ||
|
||
For groups `G = prod G_i` and `H = prod H_i` as well as maps `V_i: G_i -> H_i`, | ||
build the induced map from `G -> H`. | ||
""" | ||
function direct_sum(G::FinGenAbGroup, H::FinGenAbGroup, V::Vector{<:Map{FinGenAbGroup, FinGenAbGroup}}) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
dG = get_attribute(G, :direct_product) | ||
dH = get_attribute(H, :direct_product) | ||
|
||
if dG === nothing || dH === nothing | ||
error("both groups need to be direct products") | ||
end | ||
@assert length(V) == length(dG) == length(dH) | ||
|
||
@assert all(i -> domain(V[i]) == dG[i] && codomain(V[i]) == dH[i], 1:length(V)) | ||
h = hom(G, H, cat([matrix(V[i]) for i=1:length(V)]..., dims=(1,2)), check = !true) | ||
return h | ||
end | ||
|
||
|
||
@doc raw""" | ||
direct_product(G::FinGenAbGroup...) -> FinGenAbGroup, Vector{FinGenAbGroupHom} | ||
|
||
|
@@ -839,6 +890,13 @@ | |
return identity_matrix(FlintZZ, ngens(domain(M))) | ||
end | ||
|
||
function dual(h::Map{FinGenAbGroup, FinGenAbGroup}) | ||
A = domain(h) | ||
B = codomain(h) | ||
@assert is_free(A) && is_free(B) | ||
return hom(B, A, transpose(h.map)) | ||
end | ||
|
||
@doc raw""" | ||
hom(G::FinGenAbGroup, H::FinGenAbGroup, A::Matrix{ <: Map{FinGenAbGroup, FinGenAbGroup}}) -> Map | ||
|
||
|
@@ -1506,6 +1564,7 @@ | |
|
||
#checks if the image of mG contains the image of mH | ||
|
||
is_sub_with_data(M::FinGenAbGroup, N::FinGenAbGroup) = is_subgroup(M, N) | ||
|
||
#cannot define == as this produces problems elsewhere... need some thought | ||
function is_eq(G::FinGenAbGroup, H::FinGenAbGroup, L::GrpAbLattice = GroupLattice) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ThomasBreuer @fieker so this is the function we talked about this morning, which is the reason (or at least a reason) why the GModule tests are run in Oscar even when "exclude experimental" is active...
But this PR here is waiting for @ThomasBreuer to finish it up -- then we can make a Hecke release, adjust Oscar, and perhaps get rid of that hack in Oscar....