Skip to content
Snippets Groups Projects
Commit 2fec2cd5 authored by Dániel Varjas's avatar Dániel Varjas
Browse files

Remove unnecessary print statement. Fixes #32

parent c02645d9
No related branches found
No related tags found
No related merge requests found
Pipeline #45560 canceled
......@@ -456,7 +456,6 @@ def solve_mat_eqn(HL, HR=None, hermitian=False, traceless=False,
null_mat = []
for hL, hR, conj in zip(HL, HR, conjugate):
if conj:
print(next(basis))
row = [flatten(mat @ hL - hR @ mat.conj()) for mat in basis()]
else:
row = [flatten(mat @ hL - hR @ mat) for mat in basis()]
......
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