Anders and Briegel in Python
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

11 行
160B

  1. from abp import GraphState
  2. def test_z_measurement():
  3. g = GraphState([0])
  4. assert g.measure_z(0, 0) == 0
  5. assert g.measure_z(0, 1) == 1
  6. # TODO