Skip to content

Commit

Permalink
Merge branch 'develop' into t/33091/ticket/33091
Browse files Browse the repository at this point in the history
  • Loading branch information
dimpase authored Feb 24, 2023
2 parents d9c33e9 + c017a6a commit af479f2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/sage/combinat/root_system/reflection_group_element.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -197,12 +197,12 @@ cdef class ComplexReflectionGroupElement(PermutationGroupElement):
EXAMPLES::
sage: W = ReflectionGroup((3,1,2)) # optional - gap3
sage: data = {w: [w.to_matrix(), w.to_matrix(on_space="dual")] for w in W}
sage: for w in W.iteration_tracking_words():
....: w.reduced_word()
....: mats = [w.to_matrix(), w.to_matrix(on_space="dual")]
....: mats
....: assert data[w] == mats
sage: data = {w: [w.to_matrix(), w.to_matrix(on_space="dual")] for w in W} # optional - gap3
sage: for w in W.iteration_tracking_words(): # optional - gap3
....: w.reduced_word() # optional - gap3
....: mats = [w.to_matrix(), w.to_matrix(on_space="dual")] # optional - gap3
....: mats # optional - gap3
....: assert data[w] == mats # optional - gap3
[]
[
[1 0] [1 0]
Expand Down

0 comments on commit af479f2

Please sign in to comment.