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.

25 lignes
894B

  1. from anders_briegel import graphsim
  2. from abp import clifford
  3. import itertools
  4. #//! replaces op by trans * op * trans^dagger and returns a phase,
  5. #/*! either +1 or -1 (as RightPhase(0) or RightPhase(2)) */
  6. def test_conjugation():
  7. """ Test that clifford.conugate() agrees with graphsim.LocCliffOp.conjugate """
  8. for operation_index, transform_index in itertools.product(range(4), range(24)):
  9. transform = graphsim.LocCliffOp(transform_index)
  10. operation = graphsim.LocCliffOp(operation_index)
  11. phase = operation.conjugate(transform).ph
  12. if phase == 1:
  13. print phase
  14. phase = [1, 0, -1][phase]
  15. new_operation = operation.op
  16. NEW_OPERATION, PHASE = clifford.conjugate(operation_index, transform_index)
  17. print new_operation, NEW_OPERATION, " ",
  18. assert new_operation == NEW_OPERATION
  19. assert PHASE == phase