Anders and Briegel in Python
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

test_measurement.py 534B

il y a 8 ans
il y a 8 ans
12345678910111213141516171819202122
  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_y_measurement():
  8. g = GraphState([0])
  9. assert g.measure_y(0, 0) == 0
  10. assert g.measure_y(0, 1) == 1
  11. #def test_z_measurement_against_ab():
  12. #for i in range(10):
  13. #a = graphsim.GraphRegister(1)
  14. #b = GraphState()
  15. #b.add_node(0)
  16. #print a.measure(0, graphsim.lco_Z)
  17. #print b.measure(0, "pz")