Skip to content

Commit

Permalink
change seed
Browse files Browse the repository at this point in the history
  • Loading branch information
renatomello committed Oct 14, 2024
1 parent 26e735c commit 94a6d78
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_quantum_info_entropies.py
Original file line number Diff line number Diff line change
Expand Up @@ -791,12 +791,12 @@ def test_relative_tsallis_entropy(
state = (
random_statevector(4, seed=10, backend=backend)
if state_flag
else random_density_matrix(4, seed=11, backend=backend)
else random_density_matrix(4, seed=10, backend=backend)
)
target = (
random_statevector(4, seed=12, backend=backend)
random_statevector(4, seed=11, backend=backend)
if target_flag
else random_density_matrix(4, seed=13, backend=backend)
else random_density_matrix(4, seed=11, backend=backend)
)

value = relative_tsallis_entropy(
Expand Down

0 comments on commit 94a6d78

Please sign in to comment.