quantum-algorithms
Here are 258 public repositories matching this topic...
Adding type hints
To get this codebase up to standard, we need to add type hints. At the very least, perhaps we should start insisting that all new code has type hints added, but moreover we need to add typing to the code that currently exists.
This is a pretty large project, but luckily it can be done incrementally - I believe at this point it's a stretch goal for v1, if anyone wants to help it would be much ap
-
Updated
Feb 7, 2022 - Jupyter Notebook
-
Updated
Feb 1, 2022
-
Updated
Apr 13, 2022 - Julia
-
Updated
Apr 13, 2022 - Python
-
Updated
Mar 29, 2022 - C++
-
Updated
Dec 2, 2021 - Python
-
Updated
Mar 20, 2022 - Python
-
Updated
Mar 11, 2022 - Jupyter Notebook
-
Updated
Dec 22, 2020 - Python
-
Updated
Apr 12, 2022 - Jupyter Notebook
-
Updated
Apr 10, 2021 - Jupyter Notebook
-
Updated
Sep 28, 2021 - C++
-
Updated
Oct 27, 2021 - Jupyter Notebook
Whenever a slide has minted code, like so:
\begin{frame}[fragile]{Example minted}
\begin{minted}{python}
from qiskit_aqua import run_algorithm
print(run_algorithm(params)['result'])
\end{minted}
\end{frame}
One is unable to add the \pagenumber
before \end{frame}
as it gets left aligned instead of right aligned:

-
Updated
Mar 19, 2020
-
Updated
Sep 7, 2021
-
Updated
Jan 8, 2021 - Python
-
Updated
Aug 17, 2018 - Python
Improve this page
Add a description, image, and links to the quantum-algorithms topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the quantum-algorithms topic, visit your repo's landing page and select "manage topics."
Is your feature request related to a use case or problem? Please describe.
Right now a lot of modules (in particular tests) are pretty free form with how they do imports. It's a good practice to import modules wherever possible.
bad:
good:
**Describe the soluti