Parcourir la source

Remove redundant debug option

`prefix` was used for testing against original implementation
master
Pete Shadbolt il y a 7 ans
Parent
révision
15848d34bd
1 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. +3
    -3
      abp/graphstate.py

+ 3
- 3
abp/graphstate.py Voir le fichier

@@ -134,11 +134,11 @@ class GraphState(object):

for v in reversed(clifford.decompositions[self.node[node]["vop"]]):
if v == "x":
self.local_complementation(node, "U ->")
self.local_complementation(node)
else:
self.local_complementation(swap_qubit, "V ->")
self.local_complementation(swap_qubit)

def local_complementation(self, v, prefix=""):
def local_complementation(self, v):
""" As defined in LISTING 1 of Anders & Briegel """
for i, j in it.combinations(self.adj[v], 2):
self._toggle_edge(i, j)


Chargement…
Annuler
Enregistrer