Procházet zdrojové kódy

Better integration of `mock`

master
Pete Shadbolt před 7 roky
rodič
revize
55704d44a6
1 změnil soubory, kde provedl 4 přidání a 4 odebrání
  1. +4
    -4
      tests/test_graphstate.py

+ 4
- 4
tests/test_graphstate.py Zobrazit soubor

@@ -103,18 +103,18 @@ def test_single_qubit():
assert a.to_state_vector() == b


def test_graphstate_multiqubit(n=6):
def test_graph_state_multiqubit(n=6):
""" A multi qubit test with Hadamards only"""
for repeat in tqdm(range(REPEATS), desc="Randomly testing multiqubit operations against circuit model"):
for repeat in tqdm(range(REPEATS), desc="Random graph states against the circuit model"):
circuit = mock.random_graph_circuit(n)
a = mock.circuit_to_state(mock.ABPWrapper, n, circuit)
b = mock.circuit_to_state(mock.CircuitModelWrapper, n, circuit)
assert a.to_state_vector() == b


def test_stabilizerstate_multiqubit(n=6):
def test_stabilizer_state_multiqubit(n=6):
""" A multi qubit test with arbitrary local rotations """
for repeat in tqdm(range(REPEATS), desc="Randomly testing multiqubit operations against circuit model"):
for repeat in tqdm(range(REPEATS), desc="Random Clifford circuits against the circuit model"):
circuit = mock.random_stabilizer_circuit(n)
a = mock.circuit_to_state(mock.ABPWrapper, n, circuit)
b = mock.circuit_to_state(mock.CircuitModelWrapper, n, circuit)


Načítá se…
Zrušit
Uložit