├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── NOTICE ├── README.rst ├── docs ├── .nojekyll ├── Makefile ├── conf.py ├── index.rst ├── make.bat └── openfermionprojectq.rst ├── examples └── openfermionprojectq_demo.ipynb ├── openfermionprojectq ├── __init__.py ├── _demo_test.py ├── _ffft.py ├── _ffft_test.py ├── _graph.py ├── _graph_test.py ├── _low_depth_trotter_simulation.py ├── _low_depth_trotter_simulation_test.py ├── _parallel_bubble_sort.py ├── _parallel_bubble_sort_test.py ├── _time_evolution.py ├── _time_evolution_test.py ├── _unitary_cc.py ├── _unitary_cc_test.py └── _version.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/NOTICE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/README.rst -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/openfermionprojectq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/docs/openfermionprojectq.rst -------------------------------------------------------------------------------- /examples/openfermionprojectq_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/examples/openfermionprojectq_demo.ipynb -------------------------------------------------------------------------------- /openfermionprojectq/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/openfermionprojectq/__init__.py -------------------------------------------------------------------------------- /openfermionprojectq/_demo_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/openfermionprojectq/_demo_test.py -------------------------------------------------------------------------------- /openfermionprojectq/_ffft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/openfermionprojectq/_ffft.py -------------------------------------------------------------------------------- /openfermionprojectq/_ffft_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/openfermionprojectq/_ffft_test.py -------------------------------------------------------------------------------- /openfermionprojectq/_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/openfermionprojectq/_graph.py -------------------------------------------------------------------------------- /openfermionprojectq/_graph_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/openfermionprojectq/_graph_test.py -------------------------------------------------------------------------------- /openfermionprojectq/_low_depth_trotter_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/openfermionprojectq/_low_depth_trotter_simulation.py -------------------------------------------------------------------------------- /openfermionprojectq/_low_depth_trotter_simulation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/openfermionprojectq/_low_depth_trotter_simulation_test.py -------------------------------------------------------------------------------- /openfermionprojectq/_parallel_bubble_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/openfermionprojectq/_parallel_bubble_sort.py -------------------------------------------------------------------------------- /openfermionprojectq/_parallel_bubble_sort_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/openfermionprojectq/_parallel_bubble_sort_test.py -------------------------------------------------------------------------------- /openfermionprojectq/_time_evolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/openfermionprojectq/_time_evolution.py -------------------------------------------------------------------------------- /openfermionprojectq/_time_evolution_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/openfermionprojectq/_time_evolution_test.py -------------------------------------------------------------------------------- /openfermionprojectq/_unitary_cc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/openfermionprojectq/_unitary_cc.py -------------------------------------------------------------------------------- /openfermionprojectq/_unitary_cc_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/openfermionprojectq/_unitary_cc_test.py -------------------------------------------------------------------------------- /openfermionprojectq/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/openfermionprojectq/_version.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mghibaudi/OpenFermion-ProjectQ/HEAD/setup.py --------------------------------------------------------------------------------