-
Notifications
You must be signed in to change notification settings - Fork 143
Closed
Labels
Milestone
Description
What should we add?
Integrate qrao-prototype into Qiskit optimization.
- discuss whether
to_ising
returns identity matrix as offset instead of returningoffset
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 ifoffset=True
, otherwise return only operator.
- Currently:
- 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.
garrison and a-matsuo