Skip to content
Snippets Groups Projects
Commit 039b6aa6 authored by Anton Akhmerov's avatar Anton Akhmerov
Browse files

better code for numpy warning handling

parent 0c4d6eea
No related branches found
No related tags found
No related merge requests found
......@@ -380,9 +380,8 @@ def unified_eigenproblem(a, b=None, tol=1e6):
# Propagating modes.
propselect = (abs(abs(alpha) - abs(beta)) < eps * abs(beta))
warning_settings = np.seterr(divide='ignore', invalid='ignore')
ev = alpha / beta
np.seterr(**warning_settings)
with np.errstate(divide='ignore', invalid='ignore'):
ev = alpha / beta
# Note: the division is OK here, since we later only access
# eigenvalues close to the unit circle
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment