You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
discuss whether to_ising returns identity matrix as offset instead of returning offset float value
Currently: operator, offset = qp.to_ising()
Newly: operator = qp.to_ising()
In order not to break API, introducing an option to control output may be useful, e.g., to_ising(offset: bool) to return operator and offset if offset=True, otherwise return only operator.
magic rounding needs to be migrated to sampler
refactor solve so that QRAO solver can access the problem to be encoded
discuss whether allow pytest for unit tests because qrao-prototype uses pytest for unit tests.
The text was updated successfully, but these errors were encountered:
What should we add?
Integrate qrao-prototype into Qiskit optimization.
to_ising
returns identity matrix as offset instead of returningoffset
float valueoperator, offset = qp.to_ising()
operator = qp.to_ising()
to_ising(offset: bool)
to return operator and offset ifoffset=True
, otherwise return only operator.solve
so that QRAO solver can access the problem to be encodedThe text was updated successfully, but these errors were encountered: