Korean
언어
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.optimization.converters.IntegerToBinary

class IntegerToBinary[소스]

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).

예제

>>> 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)

참조

[1]: Sahar Karimi, Pooya Ronagh (2017), Practical Integer-to-Binary Mapping for Quantum

Annealers. arxiv.org:1706.01945.

__init__()[소스]

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.

decode(result)

DEPRECATED Decode a result into another form using the information of conversion.

encode(problem)

DEPRECATED Encode a QuadraticProgram into another form and keep the information required to decode the result.

interpret(result)

Convert back the converted problem (binary variables) to the original (integer variables).

convert(problem)[소스]

Convert an integer problem into a new problem with binary variables.

매개변수

problem (QuadraticProgram) – The problem to be solved, that may contain integer variables.

반환 형식

QuadraticProgram

반환값

The converted problem, that contains no integer variables.

예외

QiskitOptimizationError – if variable or constraint type is not supported.

decode(result)

DEPRECATED Decode a result into another form using the information of conversion.

반환 형식

OptimizationResult

encode(problem)

DEPRECATED Encode a QuadraticProgram into another form and keep the information required to decode the result.

반환 형식

QuadraticProgram

interpret(result)[소스]

Convert back the converted problem (binary variables) to the original (integer variables).

매개변수

result (OptimizationResult) – The result of the converted problem or the given result in case of FAILURE.

반환 형식

OptimizationResult

반환값

The result of the original problem.