Skip to content
Snippets Groups Projects
Commit e0a28ab8 authored by Anton Akhmerov's avatar Anton Akhmerov Committed by Christoph Groth
Browse files

improve an error message for non-Hermitian Hamiltonian

parent e6537054
No related branches found
No related tags found
No related merge requests found
......@@ -154,7 +154,9 @@ class SparseSolver(object):
if check_hermiticity:
if np.any(abs((lhs - lhs.T.conj()).data) > 1e-13):
raise ValueError('System Hamiltonian is not Hermitian.')
raise ValueError('System Hamiltonian is not Hermitian. '
'Use option `check_hermiticity=False` '
'if this is intentional.')
offsets = np.empty(norb.shape[0] + 1, int)
offsets[0] = 0
......
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