GurobiOptimizer#

class GurobiOptimizer(disp=False)[fuente]#

Bases: OptimizationAlgorithm

The Gurobi optimizer wrapped as an Qiskit OptimizationAlgorithm.

This class provides a wrapper for gurobipy to be used within the optimization module.

Ejemplos

>>> from qiskit_optimization.problems import QuadraticProgram
>>> from qiskit_optimization.algorithms import GurobiOptimizer
>>> problem = QuadraticProgram()
>>> # specify problem here, if gurobi is installed
>>> optimizer = GurobiOptimizer() if GurobiOptimizer.is_gurobi_installed() else None
>>> # Suppress gurobipy print info to stdout
>>> import sys
>>> class DevNull:
...     def noop(*args, **kwargs): pass
...     close = write = flush = writelines = noop
>>> sys.stdout = DevNull()
>>> result = optimizer.solve(problem)

Initializes the GurobiOptimizer.

Parámetros:

disp (bool) – Whether to print Gurobi output or not.

Attributes

disp#

Returns the display setting.

Devuelve:

Whether to print Gurobi information or not.

Methods

get_compatibility_msg(problem)[fuente]#

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

Returns '' since Gurobi accepts all problems that can be modeled using the QuadraticProgram. Gurobi will also solve non-convex problems.

Parámetros:

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

Devuelve:

An empty string.

Tipo del valor devuelto:

str

is_compatible(problem)#

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

Parámetros:

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

Devuelve:

Returns True if the problem is compatible, False otherwise.

Tipo del valor devuelto:

bool

static is_gurobi_installed()[fuente]#

Returns True if gurobi is installed

solve(problem)[fuente]#

Tries to solves the given problem using the optimizer.

Runs the optimizer to try to solve the optimization problem. If problem is not convex, this optimizer may raise an exception due to incompatibility, depending on the settings.

Parámetros:

problem (QuadraticProgram) – The problem to be solved.

Devuelve:

The result of the optimizer applied to the problem.

Muestra:

QiskitOptimizationError – If the problem is incompatible with the optimizer.

Tipo del valor devuelto:

OptimizationResult