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

qiskit.optimization.algorithms.OptimizationAlgorithm

class OptimizationAlgorithm[소스]

An abstract class for optimization algorithms in Qiskit’s optimization module.

__init__()

Initialize self. See help(type(self)) for accurate signature.

Methods

__init__()

Initialize self.

get_compatibility_msg(problem)

Checks whether a given problem can be solved with the optimizer implementing this method.

is_compatible(problem)

Checks whether a given problem can be solved with the optimizer implementing this method.

solve(problem)

Tries to solves the given problem using the optimizer.

abstract get_compatibility_msg(problem)[소스]

Checks whether a given problem can be solved with the optimizer implementing this method.

매개변수

problem (QuadraticProgram) – The optimization problem to check compatibility.

반환 형식

str

반환값

Returns the incompatibility message. If the message is empty no issues were found.

is_compatible(problem)[소스]

Checks whether a given problem can be solved with the optimizer implementing this method.

매개변수

problem (QuadraticProgram) – The optimization problem to check compatibility.

반환 형식

bool

반환값

Returns True if the problem is compatible, False otherwise.

abstract solve(problem)[소스]

Tries to solves the given problem using the optimizer.

Runs the optimizer to try to solve the optimization problem.

매개변수

problem (QuadraticProgram) – The problem to be solved.

반환 형식

OptimizationResult

반환값

The result of the optimizer applied to the problem.

예외

QiskitOptimizationError – If the problem is incompatible with the optimizer.