qiskit.optimization.converters.IntegerToBinary¶
-
class
IntegerToBinary
[Quellcode]¶ Convert a
QuadraticProgram
into new one by encoding integer with binary variables.This bounded-coefficient encoding used in this converted is proposed in [1], Eq. (5).
Examples
>>> from qiskit.optimization.problems import QuadraticProgram >>> from qiskit.optimization.converters import IntegerToBinary >>> problem = QuadraticProgram() >>> var = problem.integer_var(name='x', lowerbound=0, upperbound=10) >>> conv = IntegerToBinary() >>> problem2 = conv.convert(problem)
References
- [1]: Sahar Karimi, Pooya Ronagh (2017), Practical Integer-to-Binary Mapping for Quantum
Annealers. arxiv.org:1706.01945.
-
__init__
()[Quellcode]¶ Initialize self. See help(type(self)) for accurate signature.
Methods
__init__
()Initialize self.
convert
(problem)Convert an integer problem into a new problem with binary variables.
interpret
(x)Convert back the converted problem (binary variables) to the original (integer variables).
-
convert
(problem)[Quellcode]¶ Convert an integer problem into a new problem with binary variables.
- Parameter
problem (
QuadraticProgram
) – The problem to be solved, that may contain integer variables.- Rückgabetyp
QuadraticProgram
- Rückgabe
The converted problem, that contains no integer variables.
- Verursacht
QiskitOptimizationError – if variable or constraint type is not supported.
-
interpret
(x)[Quellcode]¶ Convert back the converted problem (binary variables) to the original (integer variables).
- Parameter
x (
Union
[ndarray
,List
[float
]]) – The result of the converted problem or the given result in case of FAILURE.- Rückgabetyp
ndarray
- Rückgabe
The result of the original problem.