Skip to content
Closed
Show file tree
Hide file tree
Changes from 27 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
fdf7f98
Add SSVQE again to resolve conflicts
JoelHBierman Sep 29, 2022
26e3dfe
fix tests and linting
JoelHBierman Sep 29, 2022
a6782c7
attempt to fix docs
JoelHBierman Sep 29, 2022
9aec61a
fix test_ssvqe linting
JoelHBierman Sep 29, 2022
804150c
add release note
JoelHBierman Sep 29, 2022
7e15520
add checks and tests for initial states/weights
JoelHBierman Sep 29, 2022
4e0bdd8
add checks and tests for initial states/weights
JoelHBierman Sep 29, 2022
777891a
temporary change to troubleshoot docs
JoelHBierman Sep 30, 2022
34debd0
add autosummary back
JoelHBierman Sep 30, 2022
166b6f6
fix docstrings
JoelHBierman Sep 30, 2022
b8be010
adjust docstrings/ reduce duplicate code
JoelHBierman Sep 30, 2022
3752340
adjust docstrings
JoelHBierman Sep 30, 2022
19ccaf0
adjust docstrings
JoelHBierman Sep 30, 2022
8114914
fix docs/linting
JoelHBierman Sep 30, 2022
e0d671f
add estimator to args in docstrings
JoelHBierman Sep 30, 2022
10d98d7
adjust order of attributes in docstring
JoelHBierman Oct 19, 2022
ff2c76f
adjust attributes in docstring
JoelHBierman Oct 19, 2022
2aef676
remove redundant start_time
JoelHBierman Oct 19, 2022
249bc41
remove old comment
JoelHBierman Oct 19, 2022
3db7006
chanage Sequence to list of QuantumCircuits
JoelHBierman Oct 19, 2022
bb91779
wrap aux operator evaluation in try block
JoelHBierman Oct 19, 2022
c16b143
edit error message
JoelHBierman Oct 19, 2022
d3f7f02
wrap eigenvalue evaluations in try block
JoelHBierman Oct 19, 2022
eb1c1d3
edit error message
JoelHBierman Oct 19, 2022
ab4cd2e
adjust release note
JoelHBierman Oct 19, 2022
4c15a16
try removing _almost from testing
JoelHBierman Oct 19, 2022
a428057
linting
JoelHBierman Oct 19, 2022
694e904
implement suggested changes
JoelHBierman Nov 30, 2022
2c287de
modify SSVQE docstring
JoelHBierman Dec 6, 2022
4bdba5c
fixing linting
JoelHBierman Dec 7, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions qiskit/algorithms/eigensolvers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
Eigensolver
NumPyEigensolver
VQD
SSVQE

Results
=======
Expand All @@ -36,12 +37,14 @@
EigensolverResult
NumPyEigensolverResult
VQDResult
SSVQEResult

"""

from .numpy_eigensolver import NumPyEigensolver, NumPyEigensolverResult
from .eigensolver import Eigensolver, EigensolverResult
from .vqd import VQD, VQDResult
from .ssvqe import SSVQE, SSVQEResult

__all__ = [
"NumPyEigensolver",
Expand All @@ -50,4 +53,6 @@
"EigensolverResult",
"VQD",
"VQDResult",
"SSVQE",
"SSVQEResult",
]
Loading