Skip to content

Commit

Permalink
Add sort in test for being deterministic across py version.
Browse files Browse the repository at this point in the history
  • Loading branch information
nennigb committed Mar 12, 2024
1 parent e3baca9 commit fa54884
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions eastereig/examples/ThreeDoF.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@
True
Get exceptional points location and check values
>>> EP1,EP2 = EPs
>>> EP1, EP2 = EPs
>>> EP1.locate()
[]
>>> res_EP2 = EP2.locate()[0]
>>> res_EP2 = np.sort_complex(EP2.locate())[0] # since cc
>>> res_EP2
(0.892616079814...+0.597704202996...j)
(0.892616079814...-0.597704202996...j)
Check eigenvalue reconstruction with Taylor, Padé, Puiseux and Analytic auxiliary functions
>>> N = 6
Expand Down

0 comments on commit fa54884

Please sign in to comment.