浏览代码

Remove redundant debug option

`prefix` was used for testing against original implementation
master
Pete Shadbolt 7 年前
父节点
当前提交
15848d34bd
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. +3
    -3
      abp/graphstate.py

+ 3
- 3
abp/graphstate.py 查看文件

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


正在加载...
取消
保存