Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
one more test from modular
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Kliem committed Jul 6, 2021
1 parent 902f851 commit a890c4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/modular/modform/numerical.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def _eigenvectors(self):
sage: evalues = [(matrix((n._hecke_matrix*evectors).column(i))/matrix(evectors.column(i)))[0, 0]
....: for i in range(evectors.ncols())]
sage: diff = n._hecke_matrix*evectors - evectors*diagonal_matrix(evalues)
sage: sum([abs(diff[i,j]) for i in range(5) for j in range(3)]) < 1.0e-9
sage: sum(abs(a) for a in diff.list()) < 1.0e-9
True
"""
verbose('Finding eigenvector basis')
Expand Down

0 comments on commit a890c4d

Please sign in to comment.