Skip to content
Snippets Groups Projects

fix multiple warnings

Merged Anton Akhmerov requested to merge fix_sympy_deprecation into master
+ 0
1
@@ -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()]
Loading