Skip to content

Commit

Permalink
fix the return value
Browse files Browse the repository at this point in the history
(`rref` and `echelon_form` have different output ...)
  • Loading branch information
ThomasBreuer committed Nov 14, 2024
1 parent 3331b86 commit bcf30c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Groups/action.jl
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ julia> orb = orbit(G, on_echelon_form_mats, m); length(orb)
```
"""
function on_echelon_form_mats(m::MatElem{T}, x::MatrixGroupElem) where T <: FinFieldElem
return echelon_form(m * x)[2]
return echelon_form(m * x)
end

@doc raw"""
Expand Down

0 comments on commit bcf30c3

Please sign in to comment.