-
Notifications
You must be signed in to change notification settings - Fork 376
Added converters
argument to some optimization algorithms
#1260
Conversation
In #1266 it has been seen that the |
I checked #1266. I put the Anyway, I don't think that we need to add getters/setters of penalty for |
In regards of the penalty setter do you want to comment in the other PR that the penalty one should be removed if this is what you think is best. I will note though your example of |
Sure, I will comment in the other PR and pass the
|
In the GroverOptimizer I noticed this
given that Grover has been updated did that accommodate whatever changes were required by that TODO? Maybe since that is not really related to this PR it should be updated as part of a separate PR to ensure that that changes to Grover, that has been done for this release, meet the needs there. |
hmm, if we use the |
…ommunity/qiskit-aqua#1260) * added converter argument to opt algorithms * now penalty parameter is passed properly * added docstrings for penalty Co-authored-by: Manoel Marques <[email protected]> Co-authored-by: Cryoris <[email protected]> Co-authored-by: Steve Wood <[email protected]>
Summary
Added
converters
argument toGroverOptimizer
,RecursiveMinimumEigenOptimizer
, andMinimumEigenOptimizer
to specify quadratic program converters to be used.Details and comments
By adding
converters
argument, user can specify quadratic program converters to be used. This functionality allows users to use their own defined converters in optimization algorithms.