Anders and Briegel in Python
25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- from abp import VisibleGraphState
-
- s = VisibleGraphState()
- for i in range(1000):
- s.add_node(i)
- s.act_local_rotation(i, "hadamard")
- s.update()
- for i in range(1000-1):
- s.act_cz(i, i+1)
- s.update()
|