qiskit.optimization.converters.LinearEqualityToPenalty¶
-
class
LinearEqualityToPenalty
(penalty=None)[código fonte]¶ Convert a problem with only equality constraints to unconstrained with penalty terms.
- Parâmetros
penalty (
Optional
[float
]) – Penalty factor to scale equality constraints that are added to objective. If None is passed, penalty factor will be automatically calculated.
-
__init__
(penalty=None)[código fonte]¶ - Parâmetros
penalty (
Optional
[float
]) – Penalty factor to scale equality constraints that are added to objective. If None is passed, penalty factor will be automatically calculated.
Methods
__init__
([penalty])- type penalty
Optional
[float
]
convert
(problem)Convert a problem with equality constraints into an unconstrained problem.
interpret
(x)Convert the result of the converted problem back to that of the original problem
Attributes
Returns the penalty factor used in conversion.
-
convert
(problem)[código fonte]¶ Convert a problem with equality constraints into an unconstrained problem.
- Parâmetros
problem (
QuadraticProgram
) – The problem to be solved, that does not contain inequality constraints.- Tipo de retorno
QuadraticProgram
- Retorna
The converted problem, that is an unconstrained problem.
- Levanta
QiskitOptimizationError – If an inequality constraint exists.
-
interpret
(x)[código fonte]¶ Convert the result of the converted problem back to that of the original problem
- Parâmetros
x (
Union
[ndarray
,List
[float
]]) – The result of the converted problem or the given result in case of FAILURE.- Tipo de retorno
ndarray
- Retorna
The result of the original problem.
- Levanta
QiskitOptimizationError – if the number of variables in the result differs from that of the original problem.
-
property
penalty
¶ Returns the penalty factor used in conversion.
- Tipo de retorno
Optional
[float
]- Retorna
The penalty factor used in conversion.