Anders and Briegel in Python
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

57 行
1.7KB

  1. from abp import GraphState
  2. from abp.util import xyz
  3. import numpy as np
  4. import time
  5. import itertools
  6. import networkx as nx
  7. raussendorf_unit_cell = (
  8. ((1, 0, 0), (1, 1, 0)), ((0, 1, 0), (1, 1, 0)),
  9. ((1, 2, 0), (1, 1, 0)), ((2, 1, 0), (1, 1, 0)),
  10. ((1, 2, 2), (1, 1, 2)), ((0, 1, 2), (1, 1, 2)),
  11. ((1, 0, 2), (1, 1, 2)), ((2, 1, 2), (1, 1, 2)),
  12. ((0, 1, 0), (0, 1, 1)), ((0, 0, 1), (0, 1, 1)),
  13. ((0, 1, 2), (0, 1, 1)), ((0, 2, 1), (0, 1, 1)),
  14. ((2, 1, 0), (2, 1, 1)), ((2, 0, 1), (2, 1, 1)),
  15. ((2, 1, 2), (2, 1, 1)), ((2, 2, 1), (2, 1, 1)),
  16. ((1, 0, 0), (1, 0, 1)), ((0, 0, 1), (1, 0, 1)),
  17. ((1, 0, 2), (1, 0, 1)), ((2, 0, 1), (1, 0, 1)),
  18. ((1, 2, 0), (1, 2, 1)), ((0, 2, 1), (1, 2, 1)),
  19. ((1, 2, 2), (1, 2, 1)), ((2, 2, 1), (1, 2, 1)))
  20. def add_offset(vector, offset):
  21. """ Offset a vector in n-dimensional space """
  22. return tuple(v + o*2 for v, o in zip(vector, offset))
  23. def offset_unit_cell(unit_cell, offset):
  24. """ Offset a unit cell """
  25. return {(add_offset(a, offset), add_offset(b, offset)) for a, b in unit_cell}
  26. def lattice(unit_cell, size):
  27. """ Generate a lattice from a unit cell """
  28. edges = set()
  29. for offset in itertools.product(*list(map(range, size))):
  30. edges |= offset_unit_cell(unit_cell, offset)
  31. nodes = set(itertools.chain(*edges))
  32. return nodes, edges
  33. nodes, edges = lattice(raussendorf_unit_cell, (2, 2, 3 ))
  34. psi = GraphState()
  35. for node in nodes:
  36. x, y, z = node
  37. color = "red" if (x+y+z) % 2 > 0 else "black"
  38. print(color)
  39. psi.add_qubit(node, position=xyz(*node), color=color)
  40. psi.act_hadamard(node)
  41. for edge in edges:
  42. psi.act_cz(edge[0], edge[1])
  43. psi.push()