瀏覽代碼

Test passing

master
Pete Shadbolt 3 年之前
父節點
當前提交
340fdef6de
共有 2 個檔案被更改,包括 2 行新增11 行删除
  1. +0
    -9
      abp/clifford.py
  2. +2
    -2
      tests/test_graphstate.py

+ 0
- 9
abp/clifford.py 查看文件

@@ -54,15 +54,6 @@ pz = by_name["pz"]
msqx_h = by_name["msqx_h"]
sqz_h = by_name["sqz_h"]

class Thing(object):
def __init__(self):
""" Constructor """
return None

def hunt(self):
""" Pete is cool """
pass

def conjugate(operator, unitary):
""" Returns transform * vop * transform^dagger and a phase in {+1, -1} """
return measurement_table[operator, unitary]


+ 2
- 2
tests/test_graphstate.py 查看文件

@@ -65,10 +65,10 @@ def test_stress(n=int(1e5)):
""" Testing that making a graph of ten thousand qubits takes less than half a second"""
import time
g = GraphState(list(range(n + 1)), vop="hadamard")
t = time.clock()
t = time.time()
for i in range(n):
g._add_edge(i, i + 1)
assert time.clock() - t < .5
assert time.time() - t < .5


def test_cz():


Loading…
取消
儲存