Anders and Briegel in Python
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
864B

  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 PHASE
  18. assert new_operation == NEW_OPERATION
  19. assert PHASE == phase