Skip to content

Commit

Permalink
fix example
Browse files Browse the repository at this point in the history
this was using the output from the `forms` package, when it should be from the GAP source translation.
  • Loading branch information
jacksonwalters committed Feb 27, 2025
1 parent de21377 commit 6dd6d7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/matrix/matrix2.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -12968,8 +12968,8 @@ cdef class Matrix(Matrix1):

sage: U = matrix(GF(17**2),[[0,1],[1,0]])
sage: B = U._cholesky_extended_ff(); B
[ 16*z2 + 1 6*z2 + 14]
[ 1 16*z2 + 12]
[13*z2 + 6 3*z2 + 16]
[13*z2 + 6 14*z2 + 1]
sage: U == B * B.H
True
sage: U = matrix(GF(13**2),[[1,4,7],[4,1,4],[7,4,1]])
Expand Down

0 comments on commit 6dd6d7f

Please sign in to comment.