Ver código fonte

Aha... found a mistake. Wonder if that's it....

master
Pete Shadbolt 8 anos atrás
pai
commit
9d859145d8
2 arquivos alterados com 7 adições e 6 exclusões
  1. +1
    -1
      abp/qi.py
  2. +6
    -5
      tests/test_against_circuit_model.py

+ 1
- 1
abp/qi.py Ver arquivo

@@ -58,7 +58,7 @@ class CircuitModel(object):
def act_cz(self, control, target): def act_cz(self, control, target):
""" Act a CU somewhere """ """ Act a CU somewhere """
control = 1 << control control = 1 << control
target = 1 << control
target = 1 << target
for i in xrange(self.d): for i in xrange(self.d):
if (i & control) and (i & target): if (i & control) and (i & target):
self.state[i, 0] *= -1 self.state[i, 0] *= -1


+ 6
- 5
tests/test_against_circuit_model.py Ver arquivo

@@ -6,7 +6,7 @@ import random


def multi_qubit_test(): def multi_qubit_test():
""" A multi qubit test """ """ A multi qubit test """
n = 3
n = 6
g = GraphState(range(n)) g = GraphState(range(n))
c = CircuitModel(n) c = CircuitModel(n)


@@ -16,10 +16,11 @@ def multi_qubit_test():


assert np.allclose(g.to_state_vector().state, c.state) assert np.allclose(g.to_state_vector().state, c.state)


g.act_cz(0, 1)
c.act_cz(0, 1)
g.act_cz(1, 2)
c.act_cz(1, 2)
for i in range(100):
a, b = np.random.randint(0, n-1, 2)
if a != b:
g.act_cz(a, b)
c.act_cz(a, b)


s1 = clifford.normalize_global_phase(g.to_state_vector().state) s1 = clifford.normalize_global_phase(g.to_state_vector().state)
s2 = clifford.normalize_global_phase(c.state) s2 = clifford.normalize_global_phase(c.state)


Carregando…
Cancelar
Salvar