Anders and Briegel in Python
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

12 satır
266B

  1. from abp import GraphState
  2. edges = (0, 1), (1, 2), (2, 0), (0, 3), (100, 200)
  3. g = GraphState([0, 1, 2, 3, 100, 200])
  4. g.act_circuit((i, "hadamard") for i in g.node)
  5. g.act_circuit((edge, "cz") for edge in edges)
  6. g.act_local_rotation(3, 9)
  7. print(g.to_stabilizer())