Skip to main contentIBM Quantum Documentation
This page is from an old version of Qiskit SDK and does not exist in the latest version. We recommend you migrate to the latest version. See the release notes for more information.

qiskit.optimization.algorithms.ADMMState

class ADMMState(op, rho_initial)

GitHub

Internal computation state of the ADMM implementation.

The state keeps track of various variables are stored that are being updated during problem solving. The values are relevant to the problem being solved. The state is recreated for each optimization problem. State is returned as the third value.

Parameters

  • op (QuadraticProgram) – The optimization problem being solved.
  • rho_initial (float) – Initial value of the rho parameter.

__init__

__init__(op, rho_initial)

Parameters

  • op (QuadraticProgram) – The optimization problem being solved.
  • rho_initial (float) – Initial value of the rho parameter.

Methods

__init__(op, rho_initial)type opQuadraticProgram
Was this page helpful?
Report a bug or request content on GitHub.