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.

14 lines
290B

  1. from anders_briegel import graphsim
  2. for i in range(4):
  3. for j in range(24):
  4. a = graphsim.LocCliffOp(i)
  5. b = graphsim.LocCliffOp(j)
  6. print
  7. print i, j
  8. print i, j, a.op, b.op
  9. output = a.conjugate(b)
  10. print i, j, a.op, b.op, output.ph