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.

README.md 618B

il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
12345678910111213141516171819202122
  1. # abp 0.4.27
  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/abp/). You can also build it locally using Sphinx with `make doc`.
  5. ## Installation
  6. It's easiest to install with `pip`:
  7. ```shell
  8. $ pip install --user abp==0.4.27
  9. ```
  10. Or clone and install in `develop` mode:
  11. ```shell
  12. $ git clone https://github.com/peteshadbolt/abp.git
  13. $ cd abp
  14. $ python setup.py develop --user
  15. $ python setup.py develop --user --prefix= # Might be required on OSX
  16. ```