Skip to content

Commit

Permalink
Update src/sage/combinat/symmetric_group_representations.py
Browse files Browse the repository at this point in the history
move .H to cached part

Co-authored-by: Travis Scrimshaw <[email protected]>
  • Loading branch information
jacksonwalters and tscrim authored Jan 15, 2025
1 parent 9879d0a commit d09255a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/combinat/symmetric_group_representations.py
Original file line number Diff line number Diff line change
Expand Up @@ -1118,7 +1118,7 @@ def augmented_matrix(g):
total_system = sum((augmented_matrix(g) for g in G), [])
null_space = matrix(F, total_system).right_kernel()
U = matrix(F, d_rho, d_rho, null_space.basis()[0])
return U.hermitian_decomposition()
return U.hermitian_decomposition().H

def _representation_matrix_uncached(self, permutation):
r"""
Expand Down

0 comments on commit d09255a

Please sign in to comment.