mqt.problemsolver


Namemqt.problemsolver JSON
Version 0.4 PyPI version JSON
download
home_pageNone
SummaryMQT ProblemSolver - A MQT tool for Solving Problems Using Quantum Computing
upload_time2024-08-28 10:27:56
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
keywords mqt quantum computing
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![CodeCov](https://github.com/cda-tum/MQTProblemSolver/actions/workflows/coverage.yml/badge.svg)](https://github.com/cda-tum/MQTProblemSolver/actions/workflows/coverage.yml)
[![Deploy to PyPI](https://github.com/cda-tum/MQTProblemSolver/actions/workflows/deploy.yml/badge.svg)](https://github.com/cda-tum/MQTProblemSolver/actions/workflows/deploy.yml)

<p align="center">
  <a href="https://mqt.readthedocs.io">
   <picture>
     <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/mqt_light.png" width="60%">
     <img src="https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/mqt_dark.png" width="60%">
   </picture>
  </a>
</p>

# MQT ProblemSolver

This repository covers the implementations of multiple research papers in the domain of quantum computing:

1. [Towards an Automated Framework for Realizing Quantum Computing Solutions](#towards-an-automated-framework-for-realizing-quantum-computing-solutions)
2. [A Hybrid Classical Quantum Computing Approach to the Satellite Mission Planning Problem](#a-hybrid-classical-quantum-computing-approach-to-the-satellite-mission-planning-problem)
3. [Reducing the Compilation Time of Quantum Circuits Using Pre-Compilation on the Gate Level](#reducing-the-compilation-time-of-quantum-circuits-using-pre-compilation-on-the-gate-level)
4. [Utilizing Resource Estimation for the Development of Quantum Computing Applications](#utilizing-resource-estimation-for-the-development-of-quantum-computing-applications)
5. [Towards Equivalence Checking of Classical Circuits Using Quantum Computing](#towards-equivalence-checking-of-classical-circuits-using-quantum-computing)

In the following, each implementation is briefly introduced.

# Towards an Automated Framework for Realizing Quantum Computing Solutions

MQT ProblemSolver provides a framework to utilize quantum computing as a technology for users with little to no
quantum computing knowledge that is part of the Munich Quantum Toolkit (MQT) developed by the [Chair for Design Automation](https://www.cda.cit.tum.de/) at the [Technical University of Munich](https://www.tum.de/).
All necessary quantum parts are embedded by domain experts while the interfaces provided are similar to the ones
classical solver provide:

<p align="center">
<img src="img/framework.png" height=300px>
</p>

When provided with a problem description, MQT ProblemSolver offers a selection of implemented quantum algorithms.
The user just has to chose one and all further (quantum) calculation steps are encapsulated within MQT ProblemSolver.
After the calculation finished, the respective solution is returned - again in the same format as classical
solvers use.

In the current implementation, two case studies are conducted:

1. A SAT Problem: Constraint Satisfaction Problem
2. A Graph-based Optimization Problem: Travelling Salesman Problem

## A SAT Problem: Constraint Satisfaction Problem

This exemplary implementation can be found in the [CSP_example.ipynb](notebooks/csp_example.ipynb) Jupyter notebook.
Here, the solution to a Kakuro riddle with a 2x2 grid can be solved for arbitrary sums `s0` to `s3`:

<p align="center">
<img src="img/kakuro.png" height=100px>
</p>

MQT ProblemSolver will return valid values to `a`, `b`, `c`, and `d` if a solution exists.

## A Graph-based Optimization Problem: Travelling Salesman Problem

This exemplary implementation can be found in the [TSP_example.ipynb](notebooks/tsp_example.ipynb) Jupyter notebook.
Here, the solution to a Travelling Salesman Problem with 4 cities can be solved for arbitrary distances `dist_1_2` to `dist_3_4`between the cities.

<p align="center">
<img src="img/tsp.png" height=200px>
</p>

MQT ProblemSolver will return the shortest path visiting all cities as a list.

# A Hybrid Classical Quantum Computing Approach to the Satellite Mission Planning Problem

Additional to the two case studies, we provide a more complex example for the satellite mission planning problem.
The goal is to maximize the accumulated values of all images taken by the satellite while it is often not possible
to take all images since the satellite must rotate and adjust its optics.

In the following example, there are five to-be-captured locations which their assigned value.

<p align="center">
<img src="img/satellite_mission_planning_problem.png" height=200px>
</p>

# Reducing the Compilation Time of Quantum Circuits Using Pre-Compilation on the Gate Level

Every quantum computing application must be encoded into a quantum circuit and then compiled for a specific device.
This lengthy compilation process is a key bottleneck and intensifies for recurring problems---each of which requires
a new compilation run thus far.

<p align="center">
<img src="img/workflow_old.png">
</p>

Pre-compilation is a promising approach to overcome this bottleneck.
Beginning with a problem class and suitable quantum algorithm, a **predictive encoding** scheme is applied to encode a
representative problem instance into a general-purpose quantum circuit for that problem class.
Once the real problem instance is known, the previously constructed circuit only needs to be
**adjusted**—with (nearly) no compilation necessary:

<p align="center">
<img src="img/workflow_new.png">
</p>
Following this approach, we provide a pre-compilation module that can be used to precompile QAOA circuits
for the MaxCut problem.

# Utilizing Resource Estimation for the Development of Quantum Computing Applications

Resource estimation is a promising alternative to actually execute quantum circuits on real quantum hardware which is
currently restricted by the number of qubits and the error rates. By estimating the resources needed for a quantum circuit,
the development of quantum computing applications can be accelerated without the need to wait for the availability of
large-enough quantum hardware.

In `resource_estimation/RE_experiments.py`, we evaluate the resources to calculate the ground state energy of a
Hamiltonian to chemical accuracy of 1 mHartree using the qubitization quantum simulation algorithm. The Hamiltonian
describes the 64 electron and 56 orbital active space of one of the stable intermediates in the ruthenium-catalyzed
carbon fixation cycle

In this evaluation, we investigate

- different qubit technologies,
- the impact of the maximal number of T factories,
- different design trade-offs, and
- hypothesis on how quantum hardware might improve and how it affects the required resources.

# Towards Equivalence Checking of Classical Circuits Using Quantum Computing

Equivalence checking, i.e., verifying whether two circuits realize the same functionality or not, is a typical task in the semiconductor industry. Due to the fact, that the designs grow faster than the ability to efficiently verify them, all alternative directions to close the resulting verification gap should be considered. In this work, we consider the problem through the miter structure. Here, two circuits to be checked are applied with the same primary inputs. Then, for each pair of to-be-equal output bits, an exclusive-OR (XOR) gate is applied-evaluating to 1 if the two outputs generate different values (which only happens in the case of non-equivalence). By OR-ing the outputs of all these XOR gates, eventually an indicator results that shows whether both circuits are equivalent. Then, the goal is to determine an input assignment so that this indicator evaluates to 1 (providing a counter example that shows non-equivalence) or to prove that no such assignment exists (proving equivalence).

<p align="center">
<img src="img/miter_structure.png" height=250px>
</p>

In the `equivalence_checking` module, our approach to this problem by utilizing quantum computing is implemented. There are two different ways to run this code.

- One to test, how well certain parameter combinations work. The parameters consist of the number of bits of the circuits to be verified, the threshold parameter delta (which is explained in detail in the paper), the fraction of input combinations that induce non-equivalence of the circuits (further called "counter examples"), the number of shots to run the quantum circuit for and the number of individual runs of the experiment. Multiple parameter combinations can be tested and exported as a .csv-file at a provided location.
- A second one to actually input a miter expression (in form of a string) together with some parameters independent from the miter (shots and delta) and use our approach to find the counter examples (if the circuits are non-equivalent).

These two implementations are provided by the functions `try_parameter_combinations()` and `find_counter_examples()`, respectively. Examples for their usages are shown in `notebooks/equivalence_checking/example.ipynb`.

# Usage

MQT ProblemSolver is available via [PyPI](https://pypi.org/project/mqt.problemsolver/):

```console
(venv) $ pip install mqt.problemsolver
```

# References

In case you are using MQT ProblemSolver in your work, we would be thankful if you referred to it by citing the following publication:

```bibtex
@INPROCEEDINGS{quetschlich2023mqtproblemsolver,
    title           = {{Towards an Automated Framework for Realizing Quantum Computing Solutions}},
    author          = {N. Quetschlich and L. Burgholzer and R. Wille},
    eprint          = {2210.14928},
    archivePrefix   = {arXiv},
    year            = {2023},
    booktitle       = {International Symposium on Multiple-Valued Logic (ISMVL)},
}
```

which is also available on arXiv:
[![a](https://img.shields.io/static/v1?label=arXiv&message=2210.14928&color=inactive&style=flat-square)](https://arxiv.org/abs/2210.14928)

In case you are using our Satellite Mission Planning Problem approach, we would be thankful if you referred to it by citing the following publication:

```bibtex
@INPROCEEDINGS{quetschlich2023satellite,
    title           = {{A Hybrid Classical Quantum Computing Approach to the Satellite Mission Planning Problem}},
    author          = {N. Quetschlich and V. Koch and L. Burgholzer and R. Wille},
    eprint          = {2308.00029},
    archivePrefix   = {arXiv},
    year            = {2023},
    booktitle       = {IEEE International Conference on Quantum Computing and Engineering (QCE)},
}
```

which is also available on arXiv:
[![a](https://img.shields.io/static/v1?label=arXiv&message=2308.00029&color=inactive&style=flat-square)](https://arxiv.org/abs/2308.00029)

In case you are using our Pre-Compilation approach, we would be thankful if you referred to it by citing the following publication:

```bibtex
@INPROCEEDINGS{quetschlich2023precompilation,
    title           = {{Reducing the Compilation Time of Quantum Circuits Using Pre-Compilation on the Gate Level}},
    author          = {N. Quetschlich and L. Burgholzer and R. Wille},
    eprint          = {2305.04941},
    archivePrefix   = {arXiv},
    year            = {2023},
    booktitle       = {IEEE International Conference on Quantum Computing and Engineering (QCE)},
}
```

which is also available on arXiv:
[![a](https://img.shields.io/static/v1?label=arXiv&message=2305.04941&color=inactive&style=flat-square)](https://arxiv.org/abs/2305.04941)

In case you are using our Resources Estimation approach, we would be thankful if you referred to it by citing the following publication:

```bibtex
@misc{quetschlich2024resource_estimation,
    title           = {{Utilizing Resource Estimation for the Development of Quantum Computing Applications}},
    author          = {N. Quetschlich and M. Soeken and P. Murali and R. Wille},
    eprint          = {2402.12434},
    archivePrefix   = {arXiv},
    year            = {2024},
    booktitle       = {IEEE International Conference on Quantum Computing and Engineering (QCE)},
}
```

which is also available on arXiv:
[![a](https://img.shields.io/static/v1?label=arXiv&message=2402.12434&color=inactive&style=flat-square)](https://arxiv.org/abs/2402.12434)

In case you are using our Equivalence-Checking approach, we would be thankful if you referred to it by citing the following publication:

```bibtex
@INPROCEEDINGS{quetschlich2024equivalence_checking,
    title           = {{Towards Equivalence Checking of Classical Circuits Using Quantum Computing}},
    author          = {N. Quetschlich and T. Forster and A. Osterwind and D. Helms and R. Wille},
    eprint          = {2408.14539},
    archivePrefix   = {arXiv},
    year            = {2024},
    booktitle       = {IEEE International Conference on Quantum Computing and Engineering (QCE)},
}
```

which is also available on arXiv:
[![a](https://img.shields.io/static/v1?label=arXiv&message=2408.14539&color=inactive&style=flat-square)](https://arxiv.org/abs/2408.14539)

## Acknowledgements

This project received funding from the European Research Council (ERC) under the European Union's Horizon 2020 research
and innovation program (DA QC, grant agreement No. 101001318 and MILLENION, grant agreement No. 101114305), was part
of the Munich Quantum Valley, which is supported by the Bavarian state government with funds from the Hightech Agenda
Bayern Plus, and has been supported by the BMWK on the basis of a decision by the German Bundestag through project
QuaST, as well as by the BMK, BMDW, the State of Upper Austria in the frame of the COMET program, and the QuantumReady
project within Quantum Austria (managed by the FFG).

<p align="center">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/tum_dark.svg" width="28%">
<img src="https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/tum_light.svg" width="28%" alt="TUM Logo">
</picture>
<picture>
<img src="https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/logo-bavaria.svg" width="16%" alt="Coat of Arms of Bavaria">
</picture>
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/erc_dark.svg" width="24%">
<img src="https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/erc_light.svg" width="24%" alt="ERC Logo">
</picture>
<picture>
<img src="https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/logo-mqv.svg" width="28%" alt="MQV Logo">
</picture>
</p>

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "mqt.problemsolver",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "MQT, quantum computing",
    "author": null,
    "author_email": "Nils Quetschlich <nils.quetschlich@tum.de>, Lukas Burgholzer <lukas.burgholzer@jku.at>",
    "download_url": "https://files.pythonhosted.org/packages/fb/24/96480c107b1e6a25b8f26ad4ee392cbd37e228211a5ed9deb45d61b0987c/mqt_problemsolver-0.4.tar.gz",
    "platform": null,
    "description": "[![CodeCov](https://github.com/cda-tum/MQTProblemSolver/actions/workflows/coverage.yml/badge.svg)](https://github.com/cda-tum/MQTProblemSolver/actions/workflows/coverage.yml)\n[![Deploy to PyPI](https://github.com/cda-tum/MQTProblemSolver/actions/workflows/deploy.yml/badge.svg)](https://github.com/cda-tum/MQTProblemSolver/actions/workflows/deploy.yml)\n\n<p align=\"center\">\n  <a href=\"https://mqt.readthedocs.io\">\n   <picture>\n     <source media=\"(prefers-color-scheme: dark)\" srcset=\"https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/mqt_light.png\" width=\"60%\">\n     <img src=\"https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/mqt_dark.png\" width=\"60%\">\n   </picture>\n  </a>\n</p>\n\n# MQT ProblemSolver\n\nThis repository covers the implementations of multiple research papers in the domain of quantum computing:\n\n1. [Towards an Automated Framework for Realizing Quantum Computing Solutions](#towards-an-automated-framework-for-realizing-quantum-computing-solutions)\n2. [A Hybrid Classical Quantum Computing Approach to the Satellite Mission Planning Problem](#a-hybrid-classical-quantum-computing-approach-to-the-satellite-mission-planning-problem)\n3. [Reducing the Compilation Time of Quantum Circuits Using Pre-Compilation on the Gate Level](#reducing-the-compilation-time-of-quantum-circuits-using-pre-compilation-on-the-gate-level)\n4. [Utilizing Resource Estimation for the Development of Quantum Computing Applications](#utilizing-resource-estimation-for-the-development-of-quantum-computing-applications)\n5. [Towards Equivalence Checking of Classical Circuits Using Quantum Computing](#towards-equivalence-checking-of-classical-circuits-using-quantum-computing)\n\nIn the following, each implementation is briefly introduced.\n\n# Towards an Automated Framework for Realizing Quantum Computing Solutions\n\nMQT ProblemSolver provides a framework to utilize quantum computing as a technology for users with little to no\nquantum computing knowledge that is part of the Munich Quantum Toolkit (MQT) developed by the [Chair for Design Automation](https://www.cda.cit.tum.de/) at the [Technical University of Munich](https://www.tum.de/).\nAll necessary quantum parts are embedded by domain experts while the interfaces provided are similar to the ones\nclassical solver provide:\n\n<p align=\"center\">\n<img src=\"img/framework.png\" height=300px>\n</p>\n\nWhen provided with a problem description, MQT ProblemSolver offers a selection of implemented quantum algorithms.\nThe user just has to chose one and all further (quantum) calculation steps are encapsulated within MQT ProblemSolver.\nAfter the calculation finished, the respective solution is returned - again in the same format as classical\nsolvers use.\n\nIn the current implementation, two case studies are conducted:\n\n1. A SAT Problem: Constraint Satisfaction Problem\n2. A Graph-based Optimization Problem: Travelling Salesman Problem\n\n## A SAT Problem: Constraint Satisfaction Problem\n\nThis exemplary implementation can be found in the [CSP_example.ipynb](notebooks/csp_example.ipynb) Jupyter notebook.\nHere, the solution to a Kakuro riddle with a 2x2 grid can be solved for arbitrary sums `s0` to `s3`:\n\n<p align=\"center\">\n<img src=\"img/kakuro.png\" height=100px>\n</p>\n\nMQT ProblemSolver will return valid values to `a`, `b`, `c`, and `d` if a solution exists.\n\n## A Graph-based Optimization Problem: Travelling Salesman Problem\n\nThis exemplary implementation can be found in the [TSP_example.ipynb](notebooks/tsp_example.ipynb) Jupyter notebook.\nHere, the solution to a Travelling Salesman Problem with 4 cities can be solved for arbitrary distances `dist_1_2` to `dist_3_4`between the cities.\n\n<p align=\"center\">\n<img src=\"img/tsp.png\" height=200px>\n</p>\n\nMQT ProblemSolver will return the shortest path visiting all cities as a list.\n\n# A Hybrid Classical Quantum Computing Approach to the Satellite Mission Planning Problem\n\nAdditional to the two case studies, we provide a more complex example for the satellite mission planning problem.\nThe goal is to maximize the accumulated values of all images taken by the satellite while it is often not possible\nto take all images since the satellite must rotate and adjust its optics.\n\nIn the following example, there are five to-be-captured locations which their assigned value.\n\n<p align=\"center\">\n<img src=\"img/satellite_mission_planning_problem.png\" height=200px>\n</p>\n\n# Reducing the Compilation Time of Quantum Circuits Using Pre-Compilation on the Gate Level\n\nEvery quantum computing application must be encoded into a quantum circuit and then compiled for a specific device.\nThis lengthy compilation process is a key bottleneck and intensifies for recurring problems---each of which requires\na new compilation run thus far.\n\n<p align=\"center\">\n<img src=\"img/workflow_old.png\">\n</p>\n\nPre-compilation is a promising approach to overcome this bottleneck.\nBeginning with a problem class and suitable quantum algorithm, a **predictive encoding** scheme is applied to encode a\nrepresentative problem instance into a general-purpose quantum circuit for that problem class.\nOnce the real problem instance is known, the previously constructed circuit only needs to be\n**adjusted**\u2014with (nearly) no compilation necessary:\n\n<p align=\"center\">\n<img src=\"img/workflow_new.png\">\n</p>\nFollowing this approach, we provide a pre-compilation module that can be used to precompile QAOA circuits\nfor the MaxCut problem.\n\n# Utilizing Resource Estimation for the Development of Quantum Computing Applications\n\nResource estimation is a promising alternative to actually execute quantum circuits on real quantum hardware which is\ncurrently restricted by the number of qubits and the error rates. By estimating the resources needed for a quantum circuit,\nthe development of quantum computing applications can be accelerated without the need to wait for the availability of\nlarge-enough quantum hardware.\n\nIn `resource_estimation/RE_experiments.py`, we evaluate the resources to calculate the ground state energy of a\nHamiltonian to chemical accuracy of 1 mHartree using the qubitization quantum simulation algorithm. The Hamiltonian\ndescribes the 64 electron and 56 orbital active space of one of the stable intermediates in the ruthenium-catalyzed\ncarbon fixation cycle\n\nIn this evaluation, we investigate\n\n- different qubit technologies,\n- the impact of the maximal number of T factories,\n- different design trade-offs, and\n- hypothesis on how quantum hardware might improve and how it affects the required resources.\n\n# Towards Equivalence Checking of Classical Circuits Using Quantum Computing\n\nEquivalence checking, i.e., verifying whether two circuits realize the same functionality or not, is a typical task in the semiconductor industry. Due to the fact, that the designs grow faster than the ability to efficiently verify them, all alternative directions to close the resulting verification gap should be considered. In this work, we consider the problem through the miter structure. Here, two circuits to be checked are applied with the same primary inputs. Then, for each pair of to-be-equal output bits, an exclusive-OR (XOR) gate is applied-evaluating to 1 if the two outputs generate different values (which only happens in the case of non-equivalence). By OR-ing the outputs of all these XOR gates, eventually an indicator results that shows whether both circuits are equivalent. Then, the goal is to determine an input assignment so that this indicator evaluates to 1 (providing a counter example that shows non-equivalence) or to prove that no such assignment exists (proving equivalence).\n\n<p align=\"center\">\n<img src=\"img/miter_structure.png\" height=250px>\n</p>\n\nIn the `equivalence_checking` module, our approach to this problem by utilizing quantum computing is implemented. There are two different ways to run this code.\n\n- One to test, how well certain parameter combinations work. The parameters consist of the number of bits of the circuits to be verified, the threshold parameter delta (which is explained in detail in the paper), the fraction of input combinations that induce non-equivalence of the circuits (further called \"counter examples\"), the number of shots to run the quantum circuit for and the number of individual runs of the experiment. Multiple parameter combinations can be tested and exported as a .csv-file at a provided location.\n- A second one to actually input a miter expression (in form of a string) together with some parameters independent from the miter (shots and delta) and use our approach to find the counter examples (if the circuits are non-equivalent).\n\nThese two implementations are provided by the functions `try_parameter_combinations()` and `find_counter_examples()`, respectively. Examples for their usages are shown in `notebooks/equivalence_checking/example.ipynb`.\n\n# Usage\n\nMQT ProblemSolver is available via [PyPI](https://pypi.org/project/mqt.problemsolver/):\n\n```console\n(venv) $ pip install mqt.problemsolver\n```\n\n# References\n\nIn case you are using MQT ProblemSolver in your work, we would be thankful if you referred to it by citing the following publication:\n\n```bibtex\n@INPROCEEDINGS{quetschlich2023mqtproblemsolver,\n    title           = {{Towards an Automated Framework for Realizing Quantum Computing Solutions}},\n    author          = {N. Quetschlich and L. Burgholzer and R. Wille},\n    eprint          = {2210.14928},\n    archivePrefix   = {arXiv},\n    year            = {2023},\n    booktitle       = {International Symposium on Multiple-Valued Logic (ISMVL)},\n}\n```\n\nwhich is also available on arXiv:\n[![a](https://img.shields.io/static/v1?label=arXiv&message=2210.14928&color=inactive&style=flat-square)](https://arxiv.org/abs/2210.14928)\n\nIn case you are using our Satellite Mission Planning Problem approach, we would be thankful if you referred to it by citing the following publication:\n\n```bibtex\n@INPROCEEDINGS{quetschlich2023satellite,\n    title           = {{A Hybrid Classical Quantum Computing Approach to the Satellite Mission Planning Problem}},\n    author          = {N. Quetschlich and V. Koch and L. Burgholzer and R. Wille},\n    eprint          = {2308.00029},\n    archivePrefix   = {arXiv},\n    year            = {2023},\n    booktitle       = {IEEE International Conference on Quantum Computing and Engineering (QCE)},\n}\n```\n\nwhich is also available on arXiv:\n[![a](https://img.shields.io/static/v1?label=arXiv&message=2308.00029&color=inactive&style=flat-square)](https://arxiv.org/abs/2308.00029)\n\nIn case you are using our Pre-Compilation approach, we would be thankful if you referred to it by citing the following publication:\n\n```bibtex\n@INPROCEEDINGS{quetschlich2023precompilation,\n    title           = {{Reducing the Compilation Time of Quantum Circuits Using Pre-Compilation on the Gate Level}},\n    author          = {N. Quetschlich and L. Burgholzer and R. Wille},\n    eprint          = {2305.04941},\n    archivePrefix   = {arXiv},\n    year            = {2023},\n    booktitle       = {IEEE International Conference on Quantum Computing and Engineering (QCE)},\n}\n```\n\nwhich is also available on arXiv:\n[![a](https://img.shields.io/static/v1?label=arXiv&message=2305.04941&color=inactive&style=flat-square)](https://arxiv.org/abs/2305.04941)\n\nIn case you are using our Resources Estimation approach, we would be thankful if you referred to it by citing the following publication:\n\n```bibtex\n@misc{quetschlich2024resource_estimation,\n    title           = {{Utilizing Resource Estimation for the Development of Quantum Computing Applications}},\n    author          = {N. Quetschlich and M. Soeken and P. Murali and R. Wille},\n    eprint          = {2402.12434},\n    archivePrefix   = {arXiv},\n    year            = {2024},\n    booktitle       = {IEEE International Conference on Quantum Computing and Engineering (QCE)},\n}\n```\n\nwhich is also available on arXiv:\n[![a](https://img.shields.io/static/v1?label=arXiv&message=2402.12434&color=inactive&style=flat-square)](https://arxiv.org/abs/2402.12434)\n\nIn case you are using our Equivalence-Checking approach, we would be thankful if you referred to it by citing the following publication:\n\n```bibtex\n@INPROCEEDINGS{quetschlich2024equivalence_checking,\n    title           = {{Towards Equivalence Checking of Classical Circuits Using Quantum Computing}},\n    author          = {N. Quetschlich and T. Forster and A. Osterwind and D. Helms and R. Wille},\n    eprint          = {2408.14539},\n    archivePrefix   = {arXiv},\n    year            = {2024},\n    booktitle       = {IEEE International Conference on Quantum Computing and Engineering (QCE)},\n}\n```\n\nwhich is also available on arXiv:\n[![a](https://img.shields.io/static/v1?label=arXiv&message=2408.14539&color=inactive&style=flat-square)](https://arxiv.org/abs/2408.14539)\n\n## Acknowledgements\n\nThis project received funding from the European Research Council (ERC) under the European Union's Horizon 2020 research\nand innovation program (DA QC, grant agreement No. 101001318 and MILLENION, grant agreement No. 101114305), was part\nof the Munich Quantum Valley, which is supported by the Bavarian state government with funds from the Hightech Agenda\nBayern Plus, and has been supported by the BMWK on the basis of a decision by the German Bundestag through project\nQuaST, as well as by the BMK, BMDW, the State of Upper Austria in the frame of the COMET program, and the QuantumReady\nproject within Quantum Austria (managed by the FFG).\n\n<p align=\"center\">\n<picture>\n<source media=\"(prefers-color-scheme: dark)\" srcset=\"https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/tum_dark.svg\" width=\"28%\">\n<img src=\"https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/tum_light.svg\" width=\"28%\" alt=\"TUM Logo\">\n</picture>\n<picture>\n<img src=\"https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/logo-bavaria.svg\" width=\"16%\" alt=\"Coat of Arms of Bavaria\">\n</picture>\n<picture>\n<source media=\"(prefers-color-scheme: dark)\" srcset=\"https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/erc_dark.svg\" width=\"24%\">\n<img src=\"https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/erc_light.svg\" width=\"24%\" alt=\"ERC Logo\">\n</picture>\n<picture>\n<img src=\"https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/logo-mqv.svg\" width=\"28%\" alt=\"MQV Logo\">\n</picture>\n</p>\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "MQT ProblemSolver - A MQT tool for Solving Problems Using Quantum Computing",
    "version": "0.4",
    "project_urls": {
        "Bug Tracker": "https://github.com/cda-tum/mqtproblemsolver/issues",
        "Discussions": "https://github.com/cda-tum/mqtproblemsolver/discussions",
        "Homepage": "https://github.com/cda-tum/mqtproblemsolver",
        "Research": "https://www.cda.cit.tum.de/research/quantum/"
    },
    "split_keywords": [
        "mqt",
        " quantum computing"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5e6b27b4edd8dbd15da70f75e91b29da7e8d457196c5b8a63c629c1f3d05d57d",
                "md5": "4eee4ffcb09d78aace8a397686569698",
                "sha256": "14b2cd2b57409351d791bbec3beb0ee82d10f183d62e5578353deeb1fb99bb13"
            },
            "downloads": -1,
            "filename": "mqt.problemsolver-0.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "4eee4ffcb09d78aace8a397686569698",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 25801,
            "upload_time": "2024-08-28T10:27:55",
            "upload_time_iso_8601": "2024-08-28T10:27:55.225865Z",
            "url": "https://files.pythonhosted.org/packages/5e/6b/27b4edd8dbd15da70f75e91b29da7e8d457196c5b8a63c629c1f3d05d57d/mqt.problemsolver-0.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb2496480c107b1e6a25b8f26ad4ee392cbd37e228211a5ed9deb45d61b0987c",
                "md5": "0d21c3498799db44c581ec04671c1dc7",
                "sha256": "c8b8ab630b7a56af0f47ed97fd3b9887f795825223986ee7af63d5cede585ad5"
            },
            "downloads": -1,
            "filename": "mqt_problemsolver-0.4.tar.gz",
            "has_sig": false,
            "md5_digest": "0d21c3498799db44c581ec04671c1dc7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 1198655,
            "upload_time": "2024-08-28T10:27:56",
            "upload_time_iso_8601": "2024-08-28T10:27:56.880691Z",
            "url": "https://files.pythonhosted.org/packages/fb/24/96480c107b1e6a25b8f26ad4ee392cbd37e228211a5ed9deb45d61b0987c/mqt_problemsolver-0.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-28 10:27:56",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "cda-tum",
    "github_project": "mqtproblemsolver",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "mqt.problemsolver"
}
        
Elapsed time: 0.30646s