tno.quantum.optimization.qubo.components
Components QUBO optimization
Science Score: 44.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (7.6%) to scientific vocabulary
Keywords
Repository
Components QUBO optimization
Basic Info
- Host: GitHub
- Owner: TNO-Quantum
- License: apache-2.0
- Language: Python
- Default Branch: main
- Homepage: https://tno-quantum.github.io/documentation/
- Size: 31.3 KB
Statistics
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 1
- Releases: 1
Topics
Metadata Files
README.md
TNO Quantum: Optimization - QUBO - Components
TNO Quantum provides generic software components aimed at facilitating the development of quantum applications.
This package contains the components to define QUBOs and solvers.
Documentation
Documentation of the tno.quantum.optimization.qubo.components package can be found here.
Install
Easily install the tno.quantum.optimization.qubo.components package using pip:
console
$ python -m pip install tno.quantum.optimization.qubo.components
Usage
The QUBO Components package can be used to define custom solver classes as shown in the following example.
```python from tno.quantum.optimization.qubo.components import QUBO, Solver, BasicResult
class CustomSolver(Solver[BasicResult]): def _solve(self, qubo: QUBO) -> BasicResult: result = ... # solve QUBO and construct result return result ```
The example below shows how to obtain all installed solvers.
An instance of a solver can be obtained via the get_instance() function on an SolverConfig instance.
Note: the "simulated_annealing_solver" solver shown in the example requires tno.quantum.optimization.qubo.solvers to be installed.
```python from tno.quantum.optimization.qubo.components import SolverConfig
supportedsolvers = SolverConfig.supporteditems()
solverconfig = SolverConfig(name="simulatedannealingsolver", options={}) solver = solverconfig.get_instance() ```
(End)use limitations
The content of this software may solely be used for applications that comply with international export control laws.
Owner
- Name: TNO - Quantum
- Login: TNO-Quantum
- Kind: organization
- Email: tnoquantum@tno.nl
- Location: Netherlands
- Twitter: TNO_Research
- Repositories: 2
- Profile: https://github.com/TNO-Quantum
Citation (CITATION.cff)
cff-version: 1.2.0
license: Apache-2.0
message: If you use this software, please cite it using these metadata.
authors:
- name: TNO Quantum
city: The Hague
country: NL
email: quantumcodelab@tno.nl
website: https://tno.nl
type: software
url: https://tno.nl
contact:
- name: TNO Quantum
city: The Hague
country: NL
email: quantumcodelab@tno.nl
website: https://tno.nl
repository-code: https://github.com/TNO-Quantum/optimization.qubo.components
repository-artifact: https://pypi.org/project/tno.quantum.optimization.qubo.components
title: TNO Quantum - Optimization - QUBO - Components
version: 1.0.0
date-released: 2025-05-13
GitHub Events
Total
- Issues event: 1
- Watch event: 1
Last Year
- Issues event: 1
- Watch event: 1
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 1
- Total pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Total issue authors: 1
- Total pull request authors: 0
- Average comments per issue: 0.0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 1
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 1
- Pull request authors: 0
- Average comments per issue: 0.0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- RobertWezemanTNO (1)
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- pypi 51 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 1
- Total maintainers: 1
pypi.org: tno.quantum.optimization.qubo.components
QUBO components
- Homepage: https://github.com/TNO-Quantum/
- Documentation: https://github.com/TNO-Quantum/
- License: Apache License, Version 2.0
-
Latest release: 1.0.0
published 10 months ago
Rankings
Maintainers (1)
Dependencies
- matplotlib *
- numpy *
- scipy *
- tno.quantum.utils ~=5.0