Anders and Briegel in Python
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

17 řádky
442B

  1. from abp import GraphState
  2. from anders_briegel import graphsim
  3. def test_measurements():
  4. g = GraphState([0])
  5. print g
  6. assert all(g.measure(0, "pz") == 0 for i in range(100)), "Measuring |0> in Z gives 0"
  7. def test_z_measurement_against_ab():
  8. for i in range(10):
  9. a = graphsim.GraphRegister(1)
  10. b = GraphState()
  11. b.add_node(0)
  12. #print a.measure(0, graphsim.lco_Z)
  13. #print b.measure(0, "pz")