Browse Source

Remove redundant debug option

`prefix` was used for testing against original implementation
master
Pete Shadbolt 7 years ago
parent
commit
15848d34bd
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      abp/graphstate.py

+ 3
- 3
abp/graphstate.py View File

@@ -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)


Loading…
Cancel
Save