Korean
언어
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.optimization.converters.LinearEqualityToPenalty

class LinearEqualityToPenalty(penalty=None)[소스]

Convert a problem with only equality constraints to unconstrained with penalty terms.

매개변수

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)[소스]
매개변수

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.

decode(result)

DEPRECATED Decode a result into another form using the information of conversion.

encode(problem)

DEPRECATED Encode a QuadraticProgram into another form and keep the information required to decode the result.

interpret(result)

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

Attributes

penalty

Returns the penalty factor used in conversion.

convert(problem)[소스]

Convert a problem with equality constraints into an unconstrained problem.

매개변수

problem (QuadraticProgram) – The problem to be solved, that does not contain inequality constraints.

반환 형식

QuadraticProgram

반환값

The converted problem, that is an unconstrained problem.

예외

QiskitOptimizationError – If an inequality constraint exists.

decode(result)

DEPRECATED Decode a result into another form using the information of conversion.

반환 형식

OptimizationResult

encode(problem)

DEPRECATED Encode a QuadraticProgram into another form and keep the information required to decode the result.

반환 형식

QuadraticProgram

interpret(result)[소스]

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

매개변수

result (OptimizationResult) – The result of the converted problem or the given result in case of FAILURE.

반환 형식

OptimizationResult

반환값

The result of the original problem.

예외

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.

반환 형식

Optional[float]

반환값

The penalty factor used in conversion.