├── .coveragerc ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── NOTICE ├── README.md ├── VERSION.txt ├── examples └── Demo.ipynb ├── forestopenfermion ├── __init__.py ├── pyquil_circuit_generator.py ├── pyquil_connector.py ├── rdm_estimation.py ├── rdm_utilities.py ├── tests │ ├── __init__.py │ ├── pyquil_connector_test.py │ ├── pyquil_generator_test.py │ ├── rdm_estimation_test.py │ └── rdm_utilities_test.py └── version.py ├── requirements.txt └── setup.py /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = forestopenfermion/*_test.py -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigetti/forest-openfermion/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigetti/forest-openfermion/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigetti/forest-openfermion/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigetti/forest-openfermion/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigetti/forest-openfermion/HEAD/README.md -------------------------------------------------------------------------------- /VERSION.txt: -------------------------------------------------------------------------------- 1 | 0.0.6 2 | -------------------------------------------------------------------------------- /examples/Demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigetti/forest-openfermion/HEAD/examples/Demo.ipynb -------------------------------------------------------------------------------- /forestopenfermion/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigetti/forest-openfermion/HEAD/forestopenfermion/__init__.py -------------------------------------------------------------------------------- /forestopenfermion/pyquil_circuit_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigetti/forest-openfermion/HEAD/forestopenfermion/pyquil_circuit_generator.py -------------------------------------------------------------------------------- /forestopenfermion/pyquil_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigetti/forest-openfermion/HEAD/forestopenfermion/pyquil_connector.py -------------------------------------------------------------------------------- /forestopenfermion/rdm_estimation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigetti/forest-openfermion/HEAD/forestopenfermion/rdm_estimation.py -------------------------------------------------------------------------------- /forestopenfermion/rdm_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigetti/forest-openfermion/HEAD/forestopenfermion/rdm_utilities.py -------------------------------------------------------------------------------- /forestopenfermion/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forestopenfermion/tests/pyquil_connector_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigetti/forest-openfermion/HEAD/forestopenfermion/tests/pyquil_connector_test.py -------------------------------------------------------------------------------- /forestopenfermion/tests/pyquil_generator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigetti/forest-openfermion/HEAD/forestopenfermion/tests/pyquil_generator_test.py -------------------------------------------------------------------------------- /forestopenfermion/tests/rdm_estimation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigetti/forest-openfermion/HEAD/forestopenfermion/tests/rdm_estimation_test.py -------------------------------------------------------------------------------- /forestopenfermion/tests/rdm_utilities_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigetti/forest-openfermion/HEAD/forestopenfermion/tests/rdm_utilities_test.py -------------------------------------------------------------------------------- /forestopenfermion/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigetti/forest-openfermion/HEAD/forestopenfermion/version.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigetti/forest-openfermion/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigetti/forest-openfermion/HEAD/setup.py --------------------------------------------------------------------------------