Skip to content

Commit

Permalink
fix numerical noise
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrik-johansson committed Jun 1, 2024
1 parent d2e9125 commit d60a12a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/python/flint_ctypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -5998,10 +5998,10 @@ def diagonalization(self):
>>> D
[2.000000000000000, 3.000000000000000]
>>> L*A*R
[[2.000000000000000, -8.275113827716402e-16],
[[2.000000000000000, -1.655022760610928e-16],
[0, 3.000000000000000]]
>>> L*R
[[1.000000000000000, -8.275113803054639e-17],
[[0.9999999999999998, -8.275113803054644e-17],
[0, 1.000000000000000]]
>>> M = Mat(CC_ca)
Expand Down

0 comments on commit d60a12a

Please sign in to comment.