Browse Source

Solved a dumb little problem. TODO: refactor :gun:

master
Pete Shadbolt 8 years ago
parent
commit
c2b942dada
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      tests/test_against_anders_and_briegel.py

+ 2
- 1
tests/test_against_anders_and_briegel.py View File

@@ -6,6 +6,7 @@ import random
import difflib
import re
from copy import deepcopy
from tqdm import tqdm

def compare(a, b):
""" TODO: Sketchy as you like. Remove this abomination """
@@ -126,7 +127,7 @@ def test_all(N=3):
a = graphsim.GraphRegister(N)
b = GraphState(range(N))
previous_state, previous_cz = None, None
while isequal(a, b):
for i in tqdm(range(100000), desc="Testing against Anders and Briegel"):
if random.random()>0.5:
j = random.randint(0, N-1)
a.hadamard(j)


Loading…
Cancel
Save