Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
e8b67a9
template lib clifford templates
grageragarces Jun 16, 2022
70ded40
. import clifford update
grageragarces Jun 16, 2022
8e20a6b
nct templates up to 6b_1
grageragarces Jun 16, 2022
5f604e2
nct templates up to template_nct_7a_1
grageragarces Jun 16, 2022
d6e312d
all nct templates added
grageragarces Jun 16, 2022
ab0b031
all templates added
grageragarces Jun 16, 2022
f5ee9e9
template_library doc
grageragarces Jun 16, 2022
203687f
Merge branch 'main' into main
grageragarces Jun 17, 2022
f7b5966
Rename template_library to template_library.py
grageragarces Jun 17, 2022
babc54e
Rename templates_library.py to template_library.py
grageragarces Jun 17, 2022
e75adb2
importing templates lib
grageragarces Jun 17, 2022
365894f
tox -eblack changes
grageragarces Jun 17, 2022
a2d9c09
Merge branch 'main' into main
grageragarces Jun 17, 2022
a2ac4c3
Merge branch 'main' into main
grageragarces Jun 18, 2022
8ed1493
import template lib
grageragarces Jun 19, 2022
293f468
slight modifications to the test
grageragarces Nov 16, 2022
0c0f970
documentation init
grageragarces Nov 16, 2022
92450b7
changes import method
grageragarces Nov 16, 2022
8fac07c
changes template_library class struc
grageragarces Nov 16, 2022
4d9cd20
fixing conflicts (import related)
grageragarces Dec 16, 2022
ce131c8
fixing import library bug
grageragarces Dec 16, 2022
eb433e9
fixing bug import templatelib
grageragarces Dec 16, 2022
a00f2bb
fixing bug imports
grageragarces Dec 16, 2022
ae2931a
small change imports
grageragarces Dec 16, 2022
dbd8a2b
minor change conflict
grageragarces Dec 16, 2022
46bdd5f
update changes init
grageragarces Dec 16, 2022
b48ae78
identation change
grageragarces Dec 16, 2022
e674e4f
identation modif
grageragarces Dec 16, 2022
ccc88f1
Merge branch 'main' into main
javabster Jan 5, 2023
738af85
make black reformated
grageragarces Feb 10, 2023
9568352
Merge branch 'main' into main
1ucian0 Feb 23, 2023
177375d
black reformat
grageragarces Feb 27, 2023
a346919
Merge branch 'main' of https://github.com/mgg39/qiskit-terra
grageragarces Feb 27, 2023
e0e8cf8
Merge branch 'main' into main
1ucian0 May 11, 2023
1d76cb3
fixing __init__ comment
grageragarces May 14, 2023
edf8bdb
Merge branches 'main', 'main' and 'main' of https://github.com/mgg39/…
grageragarces Jun 8, 2023
a2ef9fe
Merge branch 'main' into main
1ucian0 Jun 30, 2023
3313de6
conflict resolution https://github.com/Qiskit/qiskit/pull/8191#issuec…
1ucian0 May 4, 2026
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
12 changes: 10 additions & 2 deletions qiskit/circuit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -667,8 +667,16 @@
.. autosummary::
:toctree: ../stubs/

Parameter
ParameterExpression
Gate
ControlledGate
Delay
Instruction
InstructionSet
Operation
EquivalenceLibrary
TemplateLibrary
Parameter
ParameterExpression

The main way that this differs from the :class:`expr.Var` variables used in real-time classical
computation is that :class:`ParameterExpression` is a symbolic representation of a mathematical
Expand Down
11 changes: 11 additions & 0 deletions qiskit/circuit/library/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -850,6 +850,7 @@
.. autofunction:: template_nct_9d_10
.. currentmodule:: qiskit.circuit.library


Clifford template circuits
--------------------------

Expand Down Expand Up @@ -886,6 +887,15 @@
.. autofunction:: rzx_zz2
.. autofunction:: rzx_zz3

Template library
--------------------------

Existing Template circuits.

.. autosummary::
:toctree: ../stubs/
TemplateLibrary

"""

from .standard_gates import * # noqa: F403
Expand Down Expand Up @@ -1009,3 +1019,4 @@
from .bit_flip_oracle import BitFlipOracleGate
from .overlap import UnitaryOverlap, unitary_overlap
from .standard_gates import get_standard_gate_name_mapping
from .standard_gates.templates import TemplateLibrary
Loading
Loading