Metadata-Version: 2.1
Name: pyfermions
Version: 1.4
Summary: Rigorous free fermion entanglement renormalization from wavelet theory
Home-page: https://github.com/qi-rub/pyfermions
Maintainer: Michael Walter
Maintainer-email: michael.walter@gmail.com
License: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: Topic :: Scientific/Engineering :: Mathematics
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

# pyfermions ![Python 3.8+](https://img.shields.io/badge/python-3.8%2B-brightgreen.svg) [![arXiv](http://img.shields.io/badge/arXiv-1707.06243-blue.svg?style=flat)](http://arxiv.org/abs/1707.06243) [![arXiv](http://img.shields.io/badge/arXiv-1905.08821-blue.svg?style=flat)](https://arxiv.org/abs/1905.08821) [![arXiv](http://img.shields.io/badge/arXiv-2004.11952-blue.svg?style=flat)](https://arxiv.org/abs/2004.11952) [![Latest Version](https://img.shields.io/pypi/v/pyfermions.svg)](https://pypi.python.org/pypi/pyfermions/)

A Python package for rigorous free fermionic (and bosonic) entanglement renormalization from wavelet theory.

[![MERA for 1D free-fermion nearest-neighbor hopping Hamiltonian](https://github.com/qi-rub/pyfermions/raw/master/docs/mera1d.png)](https://github.com/qi-rub/pyfermions/tree/master/notebooks/mera1d.ipynb) [![Branching MERA for 2D free-fermion nearest-neighbor hopping Hamiltonian](https://github.com/qi-rub/pyfermions/raw/master/docs/mera2d.png)](https://github.com/qi-rub/pyfermions/tree/master/notebooks/mera2d.ipynb)

For details, please see the following three papers:

* [Rigorous free-fermion entanglement renormalization from wavelet theory](https://arxiv.org/abs/1707.06243):
    ```
    @article{latticefermions,
      title={Rigorous free-fermion entanglement renormalization from wavelet theory}
      author={Jutho Haegeman and Brian Swingle and Michael Walter and Jordan Cotler and Glen Evenbly and Volkher B. Scholz},
      journal={Phys. Rev. X},
      year={2018},
      volume={8},
      pages={011003},
      doi={10.1103/PhysRevX.8.011003},
      eprint={1707.06243},
    }
    ```

* [Quantum circuit approximations and entanglement renormalization for the Dirac field in 1+1 dimensions](https://arxiv.org/abs/1905.08821):
    ```
    @article{diracfermions,
      title={Quantum circuit approximations and entanglement renormalization for the {D}irac field in 1+1 dimensions},
      author={Freek Witteveen and Volkher Scholz and Brian Swingle and Michael Walter},
      journal={Commun. Math. Phys.},
      year={2021},
      doi={10.1007/s00220-021-04274-w},
      eprint={1905.08821},
    }
    ```

* [Bosonic entanglement renormalization circuits from wavelet theory](https://arxiv.org/abs/2004.11952):
    ```
    @article{freebosons,
      title={Bosonic entanglement renormalization circuits from wavelet theory},
      author={Freek Witteveen and Michael Walter},
      journal={SciPost Phys.},
      year={2021},
      volume={10},
      issue={6},
      pages={143},
      doi={10.21468/SciPostPhys.10.6.143},
      eprint={2004.11952},
    }
    ```

## Installation

To install the latest released version from PyPI:

```
pip install pyfermions
```

To install the bleeding-edge development version (likely unstable):

```
pip install git+git://github.com/qi-rub/pyfermions
```

## Getting Started

Now download and explore some of the [Jupyter notebooks](https://github.com/qi-rub/pyfermions/tree/master/notebooks).
The [mera1d](https://github.com/qi-rub/pyfermions/tree/master/notebooks/mera1d.ipynb) notebook is a good starting point.

## Contributing

The contributors are listed [here](https://github.com/qi-rub/pyfermions/tree/master/CONTRIBUTORS).

```
git clone git://github.com/qi-rub/pyfermions
cd pyfermions
pip install -e .[dev]
```
