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.

dummy.py 1.0KB

il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. from abp import GraphState, clifford
  2. from anders_briegel import graphsim
  3. import numpy as np
  4. def clean_random_state(N=10):
  5. """ A state to test on """
  6. a = GraphState(range(N))
  7. b = graphsim.GraphRegister(N)
  8. clifford.use_old_cz()
  9. for i in range(N):
  10. a.act_hadamard(i)
  11. b.hadamard(i)
  12. for i in range(10):
  13. j, k= np.random.choice(range(N), 2, replace=False)
  14. a.act_cz(j, k)
  15. b.cphase(j, k)
  16. return a, b
  17. def messy_random_state(N=10):
  18. a, b = clean_random_state(N)
  19. for i in range(10):
  20. j = np.random.choice(range(N))
  21. k = np.random.choice(range(24))
  22. a.act_local_rotation(j, k)
  23. b.local_op(j, graphsim.LocCliffOp(k))
  24. for i in range(10):
  25. j, k= np.random.choice(range(N), 2, replace=False)
  26. a.act_cz(j, k)
  27. b.cphase(j, k)
  28. return a, b
  29. def bell():
  30. a = GraphState(range(2))
  31. b = graphsim.GraphRegister(2)
  32. a.act_hadamard(0); a.act_hadamard(1);
  33. b.hadamard(0); b.hadamard(1);
  34. a.act_cz(0,1)
  35. b.cphase(0,1)
  36. return a, b