소스 검색

Remove fancy.py from docs.

master
Pete Shadbolt 7 년 전
부모
커밋
59f238815b
1개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. +4
    -3
      doc/index.rst

+ 4
- 3
doc/index.rst 파일 보기

@@ -162,13 +162,14 @@ First, run ``abpserver -v`` in a terminal:
$ abpserver -v
Listening on port 5000 for clients..

This ought to pop open a browser window at ``http://localhost:5001/``. You can run ``abpserver --help`` for help. Now, in another terminal, use ``abp.fancy.GraphState`` to run a Clifford circuit::
This ought to pop open a browser window at ``http://localhost:5001/``. You can run ``abpserver --help`` for help. Now use an instance of ``abp.VizClient`` to show the state in the browser::

>>> from abp.fancy import GraphState
>>> from abp import GraphState, VizClient
>>> g = GraphState(10)
>>> g.act_circuit([(i, "hadamard") for i in range(10)])
>>> g.act_circuit([((i, i+1), "cz") for i in range(9)])
>>> g.update()
>>> v = VizClient()
>>> v.update(g)

And you should see a 3D visualization of the state. You can call ``update()`` in a loop to see an animation.



불러오는 중...
취소
저장