Skip to content

Commit

Permalink
Trivial cleanup in _block_anisotropic_elim (oscar-system#4082)
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin authored Sep 12, 2024
1 parent dbc2a03 commit 8d44d45
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/Groups/matrices/transform_form.jl
Original file line number Diff line number Diff line change
Expand Up @@ -79,20 +79,19 @@ function _block_anisotropic_elim(B::MatElem{T}, ::Val{_type}; isotr=false, f=0)
if _type==:symmetric
degF=0
s=1
star = X -> transpose(X)
star = transpose
elseif _type==:alternating
degF=0
s=-1
star = X -> transpose(X)
star = transpose
elseif _type==:hermitian
degF=div(degree(F),2)
s=1
star = X -> conjugate_transpose(X)
star = conjugate_transpose
end


if isotr
q = characteristic(F)^degF
g = d-f
U = B[1:f, f+1:f+g]
V = B[f+1:f+g, f+1:f+g]
Expand Down

0 comments on commit 8d44d45

Please sign in to comment.