Anders and Briegel in Python
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

7 anos atrás
7 anos atrás
7 anos atrás
5 anos atrás
7 anos atrás
5 anos atrás
7 anos atrás
5 anos atrás
7 anos atrás
7 anos atrás
12345678910111213141516171819
  1. # abp 0.6.0
  2. Python port of Anders and Briegel' s [method](https://arxiv.org/abs/quant-ph/0504117) for fast simulation of Clifford circuits.
  3. ## Documentation
  4. You can read the full documentation [here](https://peteshadbolt.co.uk/static/abp/). You can also build it locally using Sphinx with `make doc`.
  5. To install Sphinx on OSX, use `pip install sphinx`. If after doing so `make doc` still does not work, some OSX users may also need to install `sphinxcontrib-napoleon` by running `pip install sphinxcontrib-napoleon`.
  6. ## Installation
  7. Install from source
  8. ```shell
  9. $ git clone http://gitlab.psiquantum.lan/pete/abp
  10. $ cd abp
  11. $ virtualenv env
  12. $ source env/bin/activate
  13. $ python setup.py develop --user
  14. ```