https://github.com/tno-quantum/optimization.qubo.postprocessors
Postprocessors QUBO optimization
https://github.com/tno-quantum/optimization.qubo.postprocessors
postprocessing quantum-computing qubo
Last synced: 11 days ago
JSON representation
Postprocessors QUBO optimization
- Host: GitHub
- URL: https://github.com/tno-quantum/optimization.qubo.postprocessors
- Owner: TNO-Quantum
- License: apache-2.0
- Created: 2025-05-08T06:50:46.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-05-13T11:47:57.000Z (9 months ago)
- Last Synced: 2025-09-24T18:56:08.487Z (4 months ago)
- Topics: postprocessing, quantum-computing, qubo
- Language: Python
- Homepage: https://tno-quantum.github.io/documentation/
- Size: 7.81 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Citation: CITATION.cff
Awesome Lists containing this project
README
# TNO Quantum: Optimization - QUBO - Postprocessors
TNO Quantum provides generic software components aimed at facilitating the development
of quantum applications.
This package contains implementations of QUBO postprocessors.
## Documentation
Documentation of the `tno.quantum.optimization.qubo.postprocessors` package can be found [here](https://tno-quantum.github.io/documentation/).
## Install
Easily install the `tno.quantum.optimization.qubo.postprocessors` package using pip:
```console
$ python -m pip install tno.quantum.optimization.qubo.postprocessors
```
## Usage
The following example shows how to list the available postprocessors and how to instantiate them.
```python
from tno.quantum.optimization.qubo.components import PostprocessorConfig
supported_postprocessors = PostprocessorConfig.supported_items()
postprocessor = PostprocessorConfig(name='steepest_descent_postprocessor').get_instance()
```
Alternatively, a postprocessor can also be instantiated directly.
```python
from tno.quantum.optimization.qubo.postprocessors import SteepestDescentPostprocessor
postprocessor = SteepestDescentPostprocessor()
```
## (End)use limitations
The content of this software may solely be used for applications that comply with international export control laws.