Anders and Briegel in Python
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
397B

  1. from abp import GraphState
  2. from anders_briegel import graphsim
  3. def test_z_measurement():
  4. g = GraphState([0])
  5. assert g.measure_z(0, 0) == 0
  6. assert g.measure_z(0, 1) == 1
  7. def test_z_measurement_against_ab():
  8. for i in range(100):
  9. a = graphsim.GraphRegister(1)
  10. b = GraphState()
  11. b.add_node(0)
  12. assert a.measure(0, graphsim.lco_Z) == b.measure(0, "pz")