qiskit.optimization.algorithms.CplexOptimizer¶
-
class
CplexOptimizer
(disp=False)[código fonte]¶ The CPLEX optimizer wrapped as an Qiskit
OptimizationAlgorithm
.This class provides a wrapper for
cplex.Cplex
(https://pypi.org/project/cplex/) to be used within the optimization module.Exemplos
>>> from qiskit.optimization.problems import QuadraticProgram >>> from qiskit.optimization.algorithms import CplexOptimizer >>> problem = QuadraticProgram() >>> # specify problem here, if cplex is installed >>> optimizer = CplexOptimizer() if CplexOptimizer.is_cplex_installed() else None >>> if optimizer: result = optimizer.solve(problem)
Initializes the CplexOptimizer.
- Parâmetros
disp (
Optional
[bool
]) – Whether to print CPLEX output or not.- Levanta
MissingOptionalLibraryError – CPLEX is not installed.
-
__init__
(disp=False)[código fonte]¶ Initializes the CplexOptimizer.
- Parâmetros
disp (
Optional
[bool
]) – Whether to print CPLEX output or not.- Levanta
MissingOptionalLibraryError – CPLEX is not installed.
Methods
__init__
([disp])Initializes the CplexOptimizer.
get_compatibility_msg
(problem)Checks whether a given problem can be solved with this optimizer.
is_compatible
(problem)Checks whether a given problem can be solved with the optimizer implementing this method.
Returns True if cplex is installed
solve
(problem)Tries to solves the given problem using the optimizer.
Attributes
Returns the display setting.
-
property
disp
¶ Returns the display setting.
- Tipo de retorno
bool
- Retorna
Whether to print CPLEX information or not.
-
get_compatibility_msg
(problem)[código fonte]¶ Checks whether a given problem can be solved with this optimizer.
Returns
''
since CPLEX accepts all problems that can be modeled using theQuadraticProgram
. CPLEX may throw an exception in case the problem is determined to be non-convex.- Parâmetros
problem (
QuadraticProgram
) – The optimization problem to check compatibility.- Tipo de retorno
str
- Retorna
An empty string.
-
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.- Tipo de retorno
bool
- Retorna
Returns True if the problem is compatible, False otherwise.
-
static
is_cplex_installed
()[código fonte]¶ Returns True if cplex is installed
-
solve
(problem)[código fonte]¶ 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.- Tipo de retorno
OptimizationResult
- Retorna
The result of the optimizer applied to the problem.
- Levanta
QiskitOptimizationError – If the problem is incompatible with the optimizer.