Skip to content

Commit

Permalink
Update types.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
fieker authored Apr 27, 2022
1 parent cab6812 commit 249e590
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Groups/types.jl
Original file line number Diff line number Diff line change
Expand Up @@ -283,8 +283,8 @@ subgroup of a semidirect product of groups.
Xfull::GapObj # full semidirect product: X is a subgroup of Xfull.
isfull::Bool # true if X==Xfull

function SemidirectProductGroup{S,T}(X::GapObj, N::S, H::T, f::GAPGroupHomomorphism{T,AutomorphismGroup{S}}, Xfull::GapObj, isfull::Bool) where {S<:GAPGroup, T<:GAPGroup}
return new(X, N, H, f, Xfull, isfull)
function SemidirectProductGroup(X::GapObj, N::S, H::T, f::GAPGroupHomomorphism{T,AutomorphismGroup{S}}, Xfull::GapObj, isfull::Bool) where {S<:GAPGroup, T<:GAPGroup}
return new{S, T}(X, N, H, f, Xfull, isfull)
end
end

Expand Down

0 comments on commit 249e590

Please sign in to comment.