├── .gitignore ├── .readthedocs.yml ├── LICENSE ├── README.md ├── cirqprojectq ├── __init__.py ├── _rules_pq_to_cirq.py ├── circ_engine.py ├── common_rules.py ├── common_rules_03x.py ├── common_rules_040.py ├── test_xmon_gates.py ├── xmon_decompositions.py ├── xmon_gates.py ├── xmon_rules.py ├── xmon_rules_03x.py ├── xmon_rules_040.py └── xmon_setup.py ├── docs ├── conf.py ├── index.rst └── source │ ├── CIRQ.rst │ ├── Decompose.rst │ ├── Examples.rst │ ├── introduction.ipynb │ └── introduction.rst ├── examples └── siam_cirq.py ├── requirements.txt ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQSquantumsimulations/CirqProjectQ/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQSquantumsimulations/CirqProjectQ/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQSquantumsimulations/CirqProjectQ/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQSquantumsimulations/CirqProjectQ/HEAD/README.md -------------------------------------------------------------------------------- /cirqprojectq/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQSquantumsimulations/CirqProjectQ/HEAD/cirqprojectq/__init__.py -------------------------------------------------------------------------------- /cirqprojectq/_rules_pq_to_cirq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQSquantumsimulations/CirqProjectQ/HEAD/cirqprojectq/_rules_pq_to_cirq.py -------------------------------------------------------------------------------- /cirqprojectq/circ_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQSquantumsimulations/CirqProjectQ/HEAD/cirqprojectq/circ_engine.py -------------------------------------------------------------------------------- /cirqprojectq/common_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQSquantumsimulations/CirqProjectQ/HEAD/cirqprojectq/common_rules.py -------------------------------------------------------------------------------- /cirqprojectq/common_rules_03x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQSquantumsimulations/CirqProjectQ/HEAD/cirqprojectq/common_rules_03x.py -------------------------------------------------------------------------------- /cirqprojectq/common_rules_040.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQSquantumsimulations/CirqProjectQ/HEAD/cirqprojectq/common_rules_040.py -------------------------------------------------------------------------------- /cirqprojectq/test_xmon_gates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQSquantumsimulations/CirqProjectQ/HEAD/cirqprojectq/test_xmon_gates.py -------------------------------------------------------------------------------- /cirqprojectq/xmon_decompositions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQSquantumsimulations/CirqProjectQ/HEAD/cirqprojectq/xmon_decompositions.py -------------------------------------------------------------------------------- /cirqprojectq/xmon_gates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQSquantumsimulations/CirqProjectQ/HEAD/cirqprojectq/xmon_gates.py -------------------------------------------------------------------------------- /cirqprojectq/xmon_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQSquantumsimulations/CirqProjectQ/HEAD/cirqprojectq/xmon_rules.py -------------------------------------------------------------------------------- /cirqprojectq/xmon_rules_03x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQSquantumsimulations/CirqProjectQ/HEAD/cirqprojectq/xmon_rules_03x.py -------------------------------------------------------------------------------- /cirqprojectq/xmon_rules_040.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQSquantumsimulations/CirqProjectQ/HEAD/cirqprojectq/xmon_rules_040.py -------------------------------------------------------------------------------- /cirqprojectq/xmon_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQSquantumsimulations/CirqProjectQ/HEAD/cirqprojectq/xmon_setup.py -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQSquantumsimulations/CirqProjectQ/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQSquantumsimulations/CirqProjectQ/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/source/CIRQ.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQSquantumsimulations/CirqProjectQ/HEAD/docs/source/CIRQ.rst -------------------------------------------------------------------------------- /docs/source/Decompose.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQSquantumsimulations/CirqProjectQ/HEAD/docs/source/Decompose.rst -------------------------------------------------------------------------------- /docs/source/Examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQSquantumsimulations/CirqProjectQ/HEAD/docs/source/Examples.rst -------------------------------------------------------------------------------- /docs/source/introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQSquantumsimulations/CirqProjectQ/HEAD/docs/source/introduction.ipynb -------------------------------------------------------------------------------- /docs/source/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQSquantumsimulations/CirqProjectQ/HEAD/docs/source/introduction.rst -------------------------------------------------------------------------------- /examples/siam_cirq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQSquantumsimulations/CirqProjectQ/HEAD/examples/siam_cirq.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQSquantumsimulations/CirqProjectQ/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HQSquantumsimulations/CirqProjectQ/HEAD/setup.py --------------------------------------------------------------------------------