Anders and Briegel in Python
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

vor 7 Jahren
vor 7 Jahren
vor 7 Jahren
vor 7 Jahren
vor 7 Jahren
vor 7 Jahren
vor 7 Jahren
vor 7 Jahren
vor 7 Jahren
vor 7 Jahren
vor 7 Jahren
12345678910111213141516171819202122232425262728293031
  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 install from source: 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. ```
  17. If installed from source, check that abp is running your local Python install by ensuring that the first line of `abp/bin/abpserver` matches your local python install (which can be found using `which python`). If not, you will need to change it to your local python path.
  18. Some OSX users may find they need additional modifications to their install. their path to execute `abpserver` from the command line. To add `abpserver` to your path, you must find where it is installed, e.g. using the search:
  19. ```shell
  20. $ find / -iname "abpserver"
  21. ```
  22. A path to a Python library, such as `/Users/username/Library/Python/2.7/bin/abpserver`, should appear (if installed from source, this is not `path/to/repo/abp/bin/abpserver`). To add this to your path permanently, open `~/.bash_profile`, add the path, e.g. `export PATH="$HOME/Library/Python/2.7/bin:$PATH"` and restart your shell. If this has worked, typing `which abpserver` will display the desired path.