qiskit-optimization
qiskit-optimization copied to clipboard
Enable using ``QAOAClient`` as input to the warmstart QAOA algorithm
What should we add?
The WarmStartQAOAOptimizer currently only allows a QAOA object as input for the QAOA algorithm. It would be great to extend this to also support the QAOAClient so that we can use warmstarting in context of the runtime.
This could be done by either
- explictly allowing the
QAOAClientas input (easiest solution), or - derive the
QAOAClientfromQAOA(might be the cleaner solution)