This repository was archived by the owner on Dec 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 376
Handle infeasible filter criterion for NumPy(Minimum)Eigensolver and MinimumEigenOptimizer #1310
Merged
manoelmarques
merged 32 commits into
qiskit-community:master
from
stefan-woerner:add_min_eig_opt_state_check
Oct 9, 2020
Merged
Handle infeasible filter criterion for NumPy(Minimum)Eigensolver and MinimumEigenOptimizer #1310
manoelmarques
merged 32 commits into
qiskit-community:master
from
stefan-woerner:add_min_eig_opt_state_check
Oct 9, 2020
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fetch from origin
fetch from origin
fetch from origin
fetch from origin
fetch from origin
Fetch from origin
fetch from origin
fetch from origin
added LinearEqualityToPenalty._auto_define_penalty() function (qiskit-community#1043)
fetch from origin
fetch from origin
Move functionality QuadraticProgramToNegativeValueOracle to circuit l…
fetch from origin
fetch from origin
fetch from origin
fetch from origin
fetch from origin
woodsp-ibm
reviewed
Oct 5, 2020
woodsp-ibm
reviewed
Oct 5, 2020
woodsp-ibm
approved these changes
Oct 9, 2020
mtreinish
pushed a commit
to mtreinish/qiskit-core
that referenced
this pull request
Nov 20, 2020
…MinimumEigenOptimizer (qiskit-community/qiskit-aqua#1310) * check and handle cases where filter of NumpyEigensolver returns empty list / None * Update linear_equality_to_penalty.py * update QPE test * raise exception in MEO if MES reutrns no eigenstate * update converters * update optimization algorithm * update MinEigOpt test * lint + bug fix * update handling of failure (empty state) Co-authored-by: Steve Wood <[email protected]> Co-authored-by: Manoel Marques <[email protected]>
manoelmarques
added a commit
to manoelmarques/qiskit-terra
that referenced
this pull request
Dec 7, 2020
…MinimumEigenOptimizer (qiskit-community/qiskit-aqua#1310) * check and handle cases where filter of NumpyEigensolver returns empty list / None * Update linear_equality_to_penalty.py * update QPE test * raise exception in MEO if MES reutrns no eigenstate * update converters * update optimization algorithm * update MinEigOpt test * lint + bug fix * update handling of failure (empty state) Co-authored-by: Steve Wood <[email protected]> Co-authored-by: Manoel Marques <[email protected]>
manoelmarques
added a commit
to qiskit-community/qiskit-optimization
that referenced
this pull request
Jan 14, 2021
…MinimumEigenOptimizer (qiskit-community/qiskit-aqua#1310) * check and handle cases where filter of NumpyEigensolver returns empty list / None * Update linear_equality_to_penalty.py * update QPE test * raise exception in MEO if MES reutrns no eigenstate * update converters * update optimization algorithm * update MinEigOpt test * lint + bug fix * update handling of failure (empty state) Co-authored-by: Steve Wood <[email protected]> Co-authored-by: Manoel Marques <[email protected]>
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add checks to handle empty results from
NumPy(Minimum)Eigensolver
in theMinimumEigenOptimizer
.Extend unit tests accordingly.
Fixes #1306