Anders and Briegel in Python
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

README.md 618B

12345678910111213141516171819202122
  1. # abp 0.4.25
  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.25
  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. ```