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.

stabilizers.py 345B

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