qiskit.optimization.algorithms.OptimizationResultStatus¶
-
class
OptimizationResultStatus
(value)[source]¶ Termination status of an optimization algorithm.
-
__init__
()¶ Initialize self. See help(type(self)) for accurate signature.
Attributes
the optimization algorithm ended in a failure.
the optimization algorithm obtained an infeasible solution.
the optimization algorithm succeeded to find an optimal solution.
-
FAILURE
= 1¶ the optimization algorithm ended in a failure.
-
INFEASIBLE
= 2¶ the optimization algorithm obtained an infeasible solution.
-
SUCCESS
= 0¶ the optimization algorithm succeeded to find an optimal solution.
-