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

7 年前
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. ```