Skip to content

Commit

Permalink
remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
renatomello committed Oct 24, 2024
1 parent 9abc251 commit 6ef3144
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qibo/quantum_info/entropies.py
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ def relative_von_neumann_entropy(

overlaps = backend.np.conj(eigenvectors_state.T) @ eigenvectors_target
overlaps = backend.np.abs(overlaps) ** 2
print(precision_tol, type(precision_tol))

log_state = backend.np.where(
backend.np.real(eigenvalues_state) > precision_tol,
backend.np.log2(eigenvalues_state) / np.log2(base),
Expand Down

0 comments on commit 6ef3144

Please sign in to comment.