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

add a todo note for future simplification

parent 17845d55
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -134,6 +134,7 @@ def gaussian(n, sym='A', v=1., rng=None): ...@@ -134,6 +134,7 @@ def gaussian(n, sym='A', v=1., rng=None):
h = randn(n, n) + 1j * randn(n, n) h = randn(n, n) + 1j * randn(n, n)
# Ensure Hermiticity. # Ensure Hermiticity.
# TODO: write this as h += h.T.conj() once we rely on numpy >= 1.13.0
h = h + h.T.conj() h = h + h.T.conj()
# Ensure Chiral symmetry. # Ensure Chiral symmetry.
......
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