MaximizeToMinimize#

class MaximizeToMinimize[fuente]#

Bases: _FlipProblemSense

Convert a maximization problem to a minimization problem only if it is a maximization problem, otherwise problem’s sense is unchanged.

Methods

convert(problem)#

Flip the sense of a problem.

Parámetros:

problem (QuadraticProgram) – The problem to be flipped.

Devuelve:

A converted problem, that has the flipped sense.

Tipo del valor devuelto:

QuadraticProgram

interpret(x)#

Convert the result of the converted problem back to that of the original problem.

Parámetros:

x (ndarray | List[float]) – The result of the converted problem or the given result in case of FAILURE.

Devuelve:

The result of the original problem.

Muestra:

QiskitOptimizationError – if the number of variables in the result differs from that of the original problem.

Tipo del valor devuelto:

ndarray