mimiqcircuits 0.15.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mimiqcircuits-0.15.3/LICENSE +180 -0
- mimiqcircuits-0.15.3/PKG-INFO +80 -0
- mimiqcircuits-0.15.3/README.md +54 -0
- mimiqcircuits-0.15.3/mimiqcircuits/__init__.py +337 -0
- mimiqcircuits-0.15.3/mimiqcircuits/__version__.py +1 -0
- mimiqcircuits-0.15.3/mimiqcircuits/bitstrings.py +383 -0
- mimiqcircuits-0.15.3/mimiqcircuits/canvas.py +790 -0
- mimiqcircuits-0.15.3/mimiqcircuits/circuit.py +1593 -0
- mimiqcircuits-0.15.3/mimiqcircuits/classical/classical_not.py +60 -0
- mimiqcircuits-0.15.3/mimiqcircuits/gatedecl.py +266 -0
- mimiqcircuits-0.15.3/mimiqcircuits/instruction.py +317 -0
- mimiqcircuits-0.15.3/mimiqcircuits/lazy.py +138 -0
- mimiqcircuits-0.15.3/mimiqcircuits/matrices.py +116 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/__init__.py +16 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/amplitude.py +72 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/annotations.py +429 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/barrier.py +109 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/control.py +223 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/decompositions/control.py +119 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/entanglement.py +247 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/expectationvalue.py +138 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/__init__.py +16 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/custom.py +137 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/delay.py +100 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/gate.py +109 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/generalized/__init__.py +16 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/generalized/diffusion.py +90 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/generalized/paulistring.py +167 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/generalized/phasegradient.py +87 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/generalized/polynomialoracle.py +90 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/generalized/qft.py +98 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/standard/__init__.py +16 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/standard/chadamard.py +81 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/standard/cnp.py +74 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/standard/cnx.py +186 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/standard/cpauli.py +174 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/standard/cphase.py +83 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/standard/crotations.py +211 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/standard/cs.py +123 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/standard/cswap.py +70 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/standard/csx.py +129 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/standard/cu.py +98 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/standard/dcx.py +94 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/standard/deprecated.py +209 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/standard/ecr.py +85 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/standard/hadamard.py +247 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/standard/id.py +74 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/standard/interactions.py +568 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/standard/iswap.py +80 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/standard/pauli.py +214 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/standard/phase.py +96 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/standard/rotations.py +308 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/standard/s.py +158 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/standard/swap.py +85 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/standard/sx.py +158 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/standard/sy.py +174 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/standard/t.py +145 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/gates/standard/u.py +148 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/generating_list.py +192 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/ifstatement.py +130 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/inverse.py +132 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/krauschannel.py +352 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/measure.py +248 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/measurereset.py +211 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/noisechannel/__init__.py +16 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/noisechannel/kraus.py +237 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/noisechannel/mixedunitary.py +279 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/noisechannel/standards/__init__.py +16 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/noisechannel/standards/ampdamping.py +215 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/noisechannel/standards/depolarizing.py +173 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/noisechannel/standards/pauli.py +450 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/noisechannel/standards/phaseamplitudedamping.py +269 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/noisechannel/standards/projectivenoise.py +218 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/operation.py +205 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/operator.py +185 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/operators/__init__.py +16 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/operators/custom.py +175 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/operators/diagonals.py +96 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/operators/projectors.py +739 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/operators/sigmas.py +164 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/pairmeasure.py +227 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/parallel.py +147 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/power.py +221 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/rescaledgates.py +126 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/reset.py +244 -0
- mimiqcircuits-0.15.3/mimiqcircuits/operations/utils.py +49 -0
- mimiqcircuits-0.15.3/mimiqcircuits/printutils.py +23 -0
- mimiqcircuits-0.15.3/mimiqcircuits/proto/__init__.py +16 -0
- mimiqcircuits-0.15.3/mimiqcircuits/proto/bitvector.proto +6 -0
- mimiqcircuits-0.15.3/mimiqcircuits/proto/bitvector.py +27 -0
- mimiqcircuits-0.15.3/mimiqcircuits/proto/bitvector_pb2.py +25 -0
- mimiqcircuits-0.15.3/mimiqcircuits/proto/circuit.proto +370 -0
- mimiqcircuits-0.15.3/mimiqcircuits/proto/circuit_pb2.py +117 -0
- mimiqcircuits-0.15.3/mimiqcircuits/proto/circuitproto.py +1033 -0
- mimiqcircuits-0.15.3/mimiqcircuits/proto/qcsresults.proto +28 -0
- mimiqcircuits-0.15.3/mimiqcircuits/proto/qcsresults_pb2.py +36 -0
- mimiqcircuits-0.15.3/mimiqcircuits/proto/qcsrproto.py +131 -0
- mimiqcircuits-0.15.3/mimiqcircuits/qcsresults.py +333 -0
- mimiqcircuits-0.15.3/mimiqcircuits/remote.py +623 -0
- mimiqcircuits-0.15.3/mimiqcircuits/unicode.py +20 -0
- mimiqcircuits-0.15.3/mimiqcircuits/visualization/__init__.py +20 -0
- mimiqcircuits-0.15.3/mimiqcircuits/visualization/mimiq.mplstyle +62 -0
- mimiqcircuits-0.15.3/mimiqcircuits/visualization/results.py +123 -0
- mimiqcircuits-0.15.3/pyproject.toml +42 -0
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
The MimiqLink.jl package is licensed under the Apache License, Version 2.0:
|
|
2
|
+
|
|
3
|
+
> Copyright © 2022-2023 University of Strasbourg. All Rights Reserved.
|
|
4
|
+
>
|
|
5
|
+
> Apache License
|
|
6
|
+
> Version 2.0, January 2004
|
|
7
|
+
> http://www.apache.org/licenses/
|
|
8
|
+
>
|
|
9
|
+
> TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
10
|
+
>
|
|
11
|
+
> 1. Definitions.
|
|
12
|
+
>
|
|
13
|
+
> "License" shall mean the terms and conditions for use, reproduction,
|
|
14
|
+
> and distribution as defined by Sections 1 through 9 of this document.
|
|
15
|
+
>
|
|
16
|
+
> "Licensor" shall mean the copyright owner or entity authorized by
|
|
17
|
+
> the copyright owner that is granting the License.
|
|
18
|
+
>
|
|
19
|
+
> "Legal Entity" shall mean the union of the acting entity and all
|
|
20
|
+
> other entities that control, are controlled by, or are under common
|
|
21
|
+
> control with that entity. For the purposes of this definition,
|
|
22
|
+
> "control" means (i) the power, direct or indirect, to cause the
|
|
23
|
+
> direction or management of such entity, whether by contract or
|
|
24
|
+
> otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
25
|
+
> outstanding shares, or (iii) beneficial ownership of such entity.
|
|
26
|
+
>
|
|
27
|
+
> "You" (or "Your") shall mean an individual or Legal Entity
|
|
28
|
+
> exercising permissions granted by this License.
|
|
29
|
+
>
|
|
30
|
+
> "Source" form shall mean the preferred form for making modifications,
|
|
31
|
+
> including but not limited to software source code, documentation
|
|
32
|
+
> source, and configuration files.
|
|
33
|
+
>
|
|
34
|
+
> "Object" form shall mean any form resulting from mechanical
|
|
35
|
+
> transformation or translation of a Source form, including but
|
|
36
|
+
> not limited to compiled object code, generated documentation,
|
|
37
|
+
> and conversions to other media types.
|
|
38
|
+
>
|
|
39
|
+
> "Work" shall mean the work of authorship, whether in Source or
|
|
40
|
+
> Object form, made available under the License, as indicated by a
|
|
41
|
+
> copyright notice that is included in or attached to the work
|
|
42
|
+
> (an example is provided in the Appendix below).
|
|
43
|
+
>
|
|
44
|
+
> "Derivative Works" shall mean any work, whether in Source or Object
|
|
45
|
+
> form, that is based on (or derived from) the Work and for which the
|
|
46
|
+
> editorial revisions, annotations, elaborations, or other modifications
|
|
47
|
+
> represent, as a whole, an original work of authorship. For the purposes
|
|
48
|
+
> of this License, Derivative Works shall not include works that remain
|
|
49
|
+
> separable from, or merely link (or bind by name) to the interfaces of,
|
|
50
|
+
> the Work and Derivative Works thereof.
|
|
51
|
+
>
|
|
52
|
+
> "Contribution" shall mean any work of authorship, including
|
|
53
|
+
> the original version of the Work and any modifications or additions
|
|
54
|
+
> to that Work or Derivative Works thereof, that is intentionally
|
|
55
|
+
> submitted to Licensor for inclusion in the Work by the copyright owner
|
|
56
|
+
> or by an individual or Legal Entity authorized to submit on behalf of
|
|
57
|
+
> the copyright owner. For the purposes of this definition, "submitted"
|
|
58
|
+
> means any form of electronic, verbal, or written communication sent
|
|
59
|
+
> to the Licensor or its representatives, including but not limited to
|
|
60
|
+
> communication on electronic mailing lists, source code control systems,
|
|
61
|
+
> and issue tracking systems that are managed by, or on behalf of, the
|
|
62
|
+
> Licensor for the purpose of discussing and improving the Work, but
|
|
63
|
+
> excluding communication that is conspicuously marked or otherwise
|
|
64
|
+
> designated in writing by the copyright owner as "Not a Contribution."
|
|
65
|
+
>
|
|
66
|
+
> "Contributor" shall mean Licensor and any individual or Legal Entity
|
|
67
|
+
> on behalf of whom a Contribution has been received by Licensor and
|
|
68
|
+
> subsequently incorporated within the Work.
|
|
69
|
+
>
|
|
70
|
+
> 2. Grant of Copyright License. Subject to the terms and conditions of
|
|
71
|
+
> this License, each Contributor hereby grants to You a perpetual,
|
|
72
|
+
> worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
73
|
+
> copyright license to reproduce, prepare Derivative Works of,
|
|
74
|
+
> publicly display, publicly perform, sublicense, and distribute the
|
|
75
|
+
> Work and such Derivative Works in Source or Object form.
|
|
76
|
+
>
|
|
77
|
+
> 3. Grant of Patent License. Subject to the terms and conditions of
|
|
78
|
+
> this License, each Contributor hereby grants to You a perpetual,
|
|
79
|
+
> worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
80
|
+
> (except as stated in this section) patent license to make, have made,
|
|
81
|
+
> use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
82
|
+
> where such license applies only to those patent claims licensable
|
|
83
|
+
> by such Contributor that are necessarily infringed by their
|
|
84
|
+
> Contribution(s) alone or by combination of their Contribution(s)
|
|
85
|
+
> with the Work to which such Contribution(s) was submitted. If You
|
|
86
|
+
> institute patent litigation against any entity (including a
|
|
87
|
+
> cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
88
|
+
> or a Contribution incorporated within the Work constitutes direct
|
|
89
|
+
> or contributory patent infringement, then any patent licenses
|
|
90
|
+
> granted to You under this License for that Work shall terminate
|
|
91
|
+
> as of the date such litigation is filed.
|
|
92
|
+
>
|
|
93
|
+
> 4. Redistribution. You may reproduce and distribute copies of the
|
|
94
|
+
> Work or Derivative Works thereof in any medium, with or without
|
|
95
|
+
> modifications, and in Source or Object form, provided that You
|
|
96
|
+
> meet the following conditions:
|
|
97
|
+
>
|
|
98
|
+
> (a) You must give any other recipients of the Work or
|
|
99
|
+
> Derivative Works a copy of this License; and
|
|
100
|
+
>
|
|
101
|
+
> (b) You must cause any modified files to carry prominent notices
|
|
102
|
+
> stating that You changed the files; and
|
|
103
|
+
>
|
|
104
|
+
> (c) You must retain, in the Source form of any Derivative Works
|
|
105
|
+
> that You distribute, all copyright, patent, trademark, and
|
|
106
|
+
> attribution notices from the Source form of the Work,
|
|
107
|
+
> excluding those notices that do not pertain to any part of
|
|
108
|
+
> the Derivative Works; and
|
|
109
|
+
>
|
|
110
|
+
> (d) If the Work includes a "NOTICE" text file as part of its
|
|
111
|
+
> distribution, then any Derivative Works that You distribute must
|
|
112
|
+
> include a readable copy of the attribution notices contained
|
|
113
|
+
> within such NOTICE file, excluding those notices that do not
|
|
114
|
+
> pertain to any part of the Derivative Works, in at least one
|
|
115
|
+
> of the following places: within a NOTICE text file distributed
|
|
116
|
+
> as part of the Derivative Works; within the Source form or
|
|
117
|
+
> documentation, if provided along with the Derivative Works; or,
|
|
118
|
+
> within a display generated by the Derivative Works, if and
|
|
119
|
+
> wherever such third-party notices normally appear. The contents
|
|
120
|
+
> of the NOTICE file are for informational purposes only and
|
|
121
|
+
> do not modify the License. You may add Your own attribution
|
|
122
|
+
> notices within Derivative Works that You distribute, alongside
|
|
123
|
+
> or as an addendum to the NOTICE text from the Work, provided
|
|
124
|
+
> that such additional attribution notices cannot be construed
|
|
125
|
+
> as modifying the License.
|
|
126
|
+
>
|
|
127
|
+
> You may add Your own copyright statement to Your modifications and
|
|
128
|
+
> may provide additional or different license terms and conditions
|
|
129
|
+
> for use, reproduction, or distribution of Your modifications, or
|
|
130
|
+
> for any such Derivative Works as a whole, provided Your use,
|
|
131
|
+
> reproduction, and distribution of the Work otherwise complies with
|
|
132
|
+
> the conditions stated in this License.
|
|
133
|
+
>
|
|
134
|
+
> 5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
135
|
+
> any Contribution intentionally submitted for inclusion in the Work
|
|
136
|
+
> by You to the Licensor shall be under the terms and conditions of
|
|
137
|
+
> this License, without any additional terms or conditions.
|
|
138
|
+
> Notwithstanding the above, nothing herein shall supersede or modify
|
|
139
|
+
> the terms of any separate license agreement you may have executed
|
|
140
|
+
> with Licensor regarding such Contributions.
|
|
141
|
+
>
|
|
142
|
+
> 6. Trademarks. This License does not grant permission to use the trade
|
|
143
|
+
> names, trademarks, service marks, or product names of the Licensor,
|
|
144
|
+
> except as required for reasonable and customary use in describing the
|
|
145
|
+
> origin of the Work and reproducing the content of the NOTICE file.
|
|
146
|
+
>
|
|
147
|
+
> 7. Disclaimer of Warranty. Unless required by applicable law or
|
|
148
|
+
> agreed to in writing, Licensor provides the Work (and each
|
|
149
|
+
> Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
150
|
+
> WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
151
|
+
> implied, including, without limitation, any warranties or conditions
|
|
152
|
+
> of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
153
|
+
> PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
154
|
+
> appropriateness of using or redistributing the Work and assume any
|
|
155
|
+
> risks associated with Your exercise of permissions under this License.
|
|
156
|
+
>
|
|
157
|
+
> 8. Limitation of Liability. In no event and under no legal theory,
|
|
158
|
+
> whether in tort (including negligence), contract, or otherwise,
|
|
159
|
+
> unless required by applicable law (such as deliberate and grossly
|
|
160
|
+
> negligent acts) or agreed to in writing, shall any Contributor be
|
|
161
|
+
> liable to You for damages, including any direct, indirect, special,
|
|
162
|
+
> incidental, or consequential damages of any character arising as a
|
|
163
|
+
> result of this License or out of the use or inability to use the
|
|
164
|
+
> Work (including but not limited to damages for loss of goodwill,
|
|
165
|
+
> work stoppage, computer failure or malfunction, or any and all
|
|
166
|
+
> other commercial damages or losses), even if such Contributor
|
|
167
|
+
> has been advised of the possibility of such damages.
|
|
168
|
+
>
|
|
169
|
+
> 9. Accepting Warranty or Additional Liability. While redistributing
|
|
170
|
+
> the Work or Derivative Works thereof, You may choose to offer,
|
|
171
|
+
> and charge a fee for, acceptance of support, warranty, indemnity,
|
|
172
|
+
> or other liability obligations and/or rights consistent with this
|
|
173
|
+
> License. However, in accepting such obligations, You may act only
|
|
174
|
+
> on Your own behalf and on Your sole responsibility, not on behalf
|
|
175
|
+
> of any other Contributor, and only if You agree to indemnify,
|
|
176
|
+
> defend, and hold each Contributor harmless for any liability
|
|
177
|
+
> incurred by, or claims asserted against, such Contributor by reason
|
|
178
|
+
> of your accepting any such warranty or additional liability.
|
|
179
|
+
>
|
|
180
|
+
> END OF TERMS AND CONDITIONS
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: mimiqcircuits
|
|
3
|
+
Version: 0.15.3
|
|
4
|
+
Summary:
|
|
5
|
+
Author: Guido Masella
|
|
6
|
+
Author-email: guido.masella@qperfect.io
|
|
7
|
+
Requires-Python: >=3.9,<4.0
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
14
|
+
Provides-Extra: visualization
|
|
15
|
+
Requires-Dist: bitarray (>=2.9,<3.0)
|
|
16
|
+
Requires-Dist: matplotlib (>=3.8) ; extra == "visualization"
|
|
17
|
+
Requires-Dist: mimiqlink (>=0.7,<0.8)
|
|
18
|
+
Requires-Dist: numpy (>=1.26,<2.0)
|
|
19
|
+
Requires-Dist: protobuf (>=5.26)
|
|
20
|
+
Requires-Dist: recommonmark (>=0.7.1,<0.8.0)
|
|
21
|
+
Requires-Dist: scipy (>=1.13,<2.0)
|
|
22
|
+
Requires-Dist: symengine (>=0.11,<0.12)
|
|
23
|
+
Requires-Dist: sympy (>=1.12,<2.0)
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
|
|
26
|
+
# Python interface to MIMIQ Circuits (`mimiqcircuits`)
|
|
27
|
+
|
|
28
|
+
*A library to handle quantum circuits for **QPerfect**'s MIMIQ Emulator.*
|
|
29
|
+
|
|
30
|
+
| **Documentation** | **Build Status** |
|
|
31
|
+
|:-------------------------------------------------------------------------------:|:-----------------------------------------------------------------------------------------------:|
|
|
32
|
+
| [![][docs-stable-img]][docs-stable-url] [![][docs-dev-img]][docs-dev-url] | [![][GHA-img]][GHA-url] |
|
|
33
|
+
|
|
34
|
+
## Installation
|
|
35
|
+
|
|
36
|
+
```
|
|
37
|
+
pip install "mimiqcircuits @ git+https://github.com/qperfect-io/mimiqcircuits-python.git
|
|
38
|
+
````
|
|
39
|
+
|
|
40
|
+
## Documentation
|
|
41
|
+
|
|
42
|
+
- [**STABLE**][docs-stable-url] — **documentation of the most recently version.**
|
|
43
|
+
|
|
44
|
+
## Project Status
|
|
45
|
+
|
|
46
|
+
The package is tested against, and being developed for, Python 3.8 and above
|
|
47
|
+
on Linux, MacOS, and Windows.
|
|
48
|
+
|
|
49
|
+
*MIMIQ Circuits* is currently in the alpha stage and open to test for early
|
|
50
|
+
adopters. We are continuously refining and enhance our tools so we value any
|
|
51
|
+
feedback you may have to ensure that MIMIQ Circuits meets and exceeds your
|
|
52
|
+
expectations. If you want access to MIMIQ Circuits, we encourage you register
|
|
53
|
+
on [our website](https://qperfect.io/index.php/mimiq-circuits).
|
|
54
|
+
|
|
55
|
+
## Related projects
|
|
56
|
+
|
|
57
|
+
* [MimiqCircuits.jl](https://github.com/qperfect-io/MimiqCircuits.jl) the Julia version of this library.
|
|
58
|
+
|
|
59
|
+
## COPYRIGHT
|
|
60
|
+
|
|
61
|
+
Copyright © 2022-2023 University of Strasbourg. All Rights Reserved.
|
|
62
|
+
|
|
63
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
64
|
+
you may not use this file except in compliance with the License.
|
|
65
|
+
You may obtain a copy of the License at
|
|
66
|
+
|
|
67
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
68
|
+
|
|
69
|
+
Unless required by applicable law or agreed to in writing, software
|
|
70
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
71
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
72
|
+
See the License for the specific language governing permissions and
|
|
73
|
+
limitations under the License.
|
|
74
|
+
|
|
75
|
+
[docs-stable-img]: https://img.shields.io/badge/docs-stable-blue.svg
|
|
76
|
+
[docs-stable-url]: https://qperfect-io.github.io/mimiqcircuits-python/
|
|
77
|
+
|
|
78
|
+
[GHA-img]: https://github.com/qperfect-io/mimiqcircuits-python/workflows/test/badge.svg
|
|
79
|
+
[GHA-url]: https://github.com/qperfect-io/mimiqcircuits-python/actions?query=workflows/test
|
|
80
|
+
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# Python interface to MIMIQ Circuits (`mimiqcircuits`)
|
|
2
|
+
|
|
3
|
+
*A library to handle quantum circuits for **QPerfect**'s MIMIQ Emulator.*
|
|
4
|
+
|
|
5
|
+
| **Documentation** | **Build Status** |
|
|
6
|
+
|:-------------------------------------------------------------------------------:|:-----------------------------------------------------------------------------------------------:|
|
|
7
|
+
| [![][docs-stable-img]][docs-stable-url] [![][docs-dev-img]][docs-dev-url] | [![][GHA-img]][GHA-url] |
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
pip install "mimiqcircuits @ git+https://github.com/qperfect-io/mimiqcircuits-python.git
|
|
13
|
+
````
|
|
14
|
+
|
|
15
|
+
## Documentation
|
|
16
|
+
|
|
17
|
+
- [**STABLE**][docs-stable-url] — **documentation of the most recently version.**
|
|
18
|
+
|
|
19
|
+
## Project Status
|
|
20
|
+
|
|
21
|
+
The package is tested against, and being developed for, Python 3.8 and above
|
|
22
|
+
on Linux, MacOS, and Windows.
|
|
23
|
+
|
|
24
|
+
*MIMIQ Circuits* is currently in the alpha stage and open to test for early
|
|
25
|
+
adopters. We are continuously refining and enhance our tools so we value any
|
|
26
|
+
feedback you may have to ensure that MIMIQ Circuits meets and exceeds your
|
|
27
|
+
expectations. If you want access to MIMIQ Circuits, we encourage you register
|
|
28
|
+
on [our website](https://qperfect.io/index.php/mimiq-circuits).
|
|
29
|
+
|
|
30
|
+
## Related projects
|
|
31
|
+
|
|
32
|
+
* [MimiqCircuits.jl](https://github.com/qperfect-io/MimiqCircuits.jl) the Julia version of this library.
|
|
33
|
+
|
|
34
|
+
## COPYRIGHT
|
|
35
|
+
|
|
36
|
+
Copyright © 2022-2023 University of Strasbourg. All Rights Reserved.
|
|
37
|
+
|
|
38
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
39
|
+
you may not use this file except in compliance with the License.
|
|
40
|
+
You may obtain a copy of the License at
|
|
41
|
+
|
|
42
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
43
|
+
|
|
44
|
+
Unless required by applicable law or agreed to in writing, software
|
|
45
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
46
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
47
|
+
See the License for the specific language governing permissions and
|
|
48
|
+
limitations under the License.
|
|
49
|
+
|
|
50
|
+
[docs-stable-img]: https://img.shields.io/badge/docs-stable-blue.svg
|
|
51
|
+
[docs-stable-url]: https://qperfect-io.github.io/mimiqcircuits-python/
|
|
52
|
+
|
|
53
|
+
[GHA-img]: https://github.com/qperfect-io/mimiqcircuits-python/workflows/test/badge.svg
|
|
54
|
+
[GHA-url]: https://github.com/qperfect-io/mimiqcircuits-python/actions?query=workflows/test
|
|
@@ -0,0 +1,337 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Copyright © 2022-2024 University of Strasbourg. All Rights Reserved.
|
|
3
|
+
# Copyright © 2032-2024 QPerfect. All Rights Reserved.
|
|
4
|
+
#
|
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
# you may not use this file except in compliance with the License.
|
|
7
|
+
# You may obtain a copy of the License at
|
|
8
|
+
#
|
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
#
|
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
# See the License for the specific language governing permissions and
|
|
15
|
+
# limitations under the License.
|
|
16
|
+
#
|
|
17
|
+
|
|
18
|
+
from mimiqcircuits.__version__ import __version__
|
|
19
|
+
|
|
20
|
+
from mimiqcircuits.circuit import Circuit
|
|
21
|
+
|
|
22
|
+
from mimiqcircuits.bitstrings import BitString
|
|
23
|
+
|
|
24
|
+
from mimiqcircuits.operations.operation import Operation
|
|
25
|
+
|
|
26
|
+
from mimiqcircuits.operations.control import Control
|
|
27
|
+
from mimiqcircuits.operations.parallel import Parallel
|
|
28
|
+
from mimiqcircuits.operations.inverse import Inverse
|
|
29
|
+
from mimiqcircuits.operations.power import Power
|
|
30
|
+
from mimiqcircuits.operations.barrier import Barrier
|
|
31
|
+
from mimiqcircuits.operations.ifstatement import IfStatement
|
|
32
|
+
from mimiqcircuits.operations.measure import (
|
|
33
|
+
AbstractMeasurement,
|
|
34
|
+
Measure,
|
|
35
|
+
MeasureX,
|
|
36
|
+
MeasureY,
|
|
37
|
+
MeasureZ,
|
|
38
|
+
)
|
|
39
|
+
from mimiqcircuits.operations.reset import Reset, ResetX, ResetY, ResetZ
|
|
40
|
+
from mimiqcircuits.operations.gates.gate import Gate
|
|
41
|
+
|
|
42
|
+
from mimiqcircuits.operations.gates.custom import GateCustom
|
|
43
|
+
|
|
44
|
+
from mimiqcircuits.operations.gates.standard.u import GateU
|
|
45
|
+
from mimiqcircuits.operations.gates.standard.id import GateID
|
|
46
|
+
from mimiqcircuits.operations.gates.standard.pauli import GateX, GateY, GateZ
|
|
47
|
+
from mimiqcircuits.operations.gates.standard.hadamard import (
|
|
48
|
+
GateH,
|
|
49
|
+
GateHXY,
|
|
50
|
+
GateHXZ,
|
|
51
|
+
GateHYZ,
|
|
52
|
+
)
|
|
53
|
+
from mimiqcircuits.operations.gates.standard.s import GateS, GateSDG
|
|
54
|
+
from mimiqcircuits.operations.gates.standard.t import GateT, GateTDG
|
|
55
|
+
from mimiqcircuits.operations.gates.standard.sx import GateSX, GateSXDG
|
|
56
|
+
from mimiqcircuits.operations.gates.standard.sy import GateSY, GateSYDG
|
|
57
|
+
from mimiqcircuits.operations.gates.standard.rotations import (
|
|
58
|
+
GateRX,
|
|
59
|
+
GateRY,
|
|
60
|
+
GateRZ,
|
|
61
|
+
GateR,
|
|
62
|
+
)
|
|
63
|
+
from mimiqcircuits.operations.gates.standard.deprecated import GateU1, GateU2, GateU3
|
|
64
|
+
|
|
65
|
+
from mimiqcircuits.operations.gates.standard.cpauli import GateCX, GateCY, GateCZ
|
|
66
|
+
from mimiqcircuits.operations.gates.standard.chadamard import GateCH
|
|
67
|
+
from mimiqcircuits.operations.gates.standard.phase import GateP
|
|
68
|
+
from mimiqcircuits.operations.gates.standard.swap import GateSWAP
|
|
69
|
+
from mimiqcircuits.operations.gates.standard.iswap import GateISWAP
|
|
70
|
+
from mimiqcircuits.operations.gates.standard.cs import GateCS, GateCSDG
|
|
71
|
+
from mimiqcircuits.operations.gates.standard.csx import GateCSX, GateCSXDG
|
|
72
|
+
from mimiqcircuits.operations.gates.standard.ecr import GateECR
|
|
73
|
+
from mimiqcircuits.operations.gates.standard.dcx import GateDCX
|
|
74
|
+
from mimiqcircuits.operations.gates.standard.cphase import GateCP
|
|
75
|
+
from mimiqcircuits.operations.gates.standard.cu import GateCU
|
|
76
|
+
from mimiqcircuits.operations.gates.standard.crotations import GateCRX, GateCRY, GateCRZ
|
|
77
|
+
from mimiqcircuits.operations.gates.standard.interactions import (
|
|
78
|
+
GateRXX,
|
|
79
|
+
GateRYY,
|
|
80
|
+
GateRZZ,
|
|
81
|
+
GateRZX,
|
|
82
|
+
GateXXplusYY,
|
|
83
|
+
GateXXminusYY,
|
|
84
|
+
)
|
|
85
|
+
from mimiqcircuits.operations.gates.standard.cnx import GateCCX, GateC3X
|
|
86
|
+
from mimiqcircuits.operations.gates.standard.cnp import GateCCP
|
|
87
|
+
from mimiqcircuits.operations.gates.standard.cswap import GateCSWAP
|
|
88
|
+
|
|
89
|
+
from mimiqcircuits.operations.gates.generalized.qft import QFT
|
|
90
|
+
from mimiqcircuits.operations.gates.generalized.phasegradient import PhaseGradient
|
|
91
|
+
|
|
92
|
+
from mimiqcircuits.instruction import Instruction
|
|
93
|
+
|
|
94
|
+
from mimiqcircuits.remote import MimiqConnection
|
|
95
|
+
|
|
96
|
+
from mimiqcircuits.gatedecl import GateCall, GateDecl, gatedecl
|
|
97
|
+
|
|
98
|
+
from mimiqcircuits.lazy import control, parallel, inverse, power, LazyArg, LazyExpr
|
|
99
|
+
|
|
100
|
+
from mimiqcircuits.operations.gates.generalized.diffusion import Diffusion
|
|
101
|
+
|
|
102
|
+
from mimiqcircuits.operations.gates.generalized.polynomialoracle import PolynomialOracle
|
|
103
|
+
|
|
104
|
+
from mimiqcircuits.qcsresults import QCSResults
|
|
105
|
+
from mimiqcircuits.canvas import AsciiCanvas, AsciiCircuit
|
|
106
|
+
from mimiqcircuits.operations.operator import AbstractOperator
|
|
107
|
+
from mimiqcircuits.operations.gates.generalized.paulistring import PauliString
|
|
108
|
+
from mimiqcircuits.operations.noisechannel.standards.ampdamping import (
|
|
109
|
+
AmplitudeDamping,
|
|
110
|
+
GeneralizedAmplitudeDamping,
|
|
111
|
+
)
|
|
112
|
+
|
|
113
|
+
from mimiqcircuits.operations.operators.sigmas import (
|
|
114
|
+
SigmaMinus,
|
|
115
|
+
SigmaPlus,
|
|
116
|
+
)
|
|
117
|
+
from mimiqcircuits.operations.operators.diagonals import DiagonalOp
|
|
118
|
+
from mimiqcircuits.operations.operators.projectors import (
|
|
119
|
+
Projector0,
|
|
120
|
+
Projector00,
|
|
121
|
+
Projector01,
|
|
122
|
+
Projector1,
|
|
123
|
+
Projector10,
|
|
124
|
+
Projector11,
|
|
125
|
+
ProjectorX0,
|
|
126
|
+
ProjectorX1,
|
|
127
|
+
ProjectorY0,
|
|
128
|
+
ProjectorY1,
|
|
129
|
+
ProjectorZ0,
|
|
130
|
+
ProjectorZ1,
|
|
131
|
+
)
|
|
132
|
+
|
|
133
|
+
from mimiqcircuits.operations.noisechannel.standards.depolarizing import (
|
|
134
|
+
Depolarizing,
|
|
135
|
+
Depolarizing1,
|
|
136
|
+
Depolarizing2,
|
|
137
|
+
)
|
|
138
|
+
from mimiqcircuits.operations.operators.custom import Operator
|
|
139
|
+
from mimiqcircuits.operations.noisechannel.standards.phaseamplitudedamping import (
|
|
140
|
+
PhaseAmplitudeDamping,
|
|
141
|
+
ThermalNoise,
|
|
142
|
+
)
|
|
143
|
+
from mimiqcircuits.operations.noisechannel.kraus import Kraus
|
|
144
|
+
from mimiqcircuits.operations.noisechannel.mixedunitary import MixedUnitary
|
|
145
|
+
from mimiqcircuits.operations.krauschannel import krauschannel
|
|
146
|
+
from mimiqcircuits.operations.noisechannel.standards.pauli import (
|
|
147
|
+
PauliNoise,
|
|
148
|
+
PauliX,
|
|
149
|
+
PauliY,
|
|
150
|
+
PauliZ,
|
|
151
|
+
)
|
|
152
|
+
from mimiqlink.connection import QPERFECT_CLOUD, QPERFECT_CLOUD2
|
|
153
|
+
from mimiqcircuits.operations.amplitude import Amplitude
|
|
154
|
+
from mimiqcircuits.operations.expectationvalue import ExpectationValue
|
|
155
|
+
from mimiqcircuits.operations.entanglement import (
|
|
156
|
+
SchmidtRank,
|
|
157
|
+
VonNeumannEntropy,
|
|
158
|
+
BondDim,
|
|
159
|
+
)
|
|
160
|
+
from mimiqcircuits.operations.measurereset import (
|
|
161
|
+
MeasureReset,
|
|
162
|
+
MeasureResetX,
|
|
163
|
+
MeasureResetY,
|
|
164
|
+
MeasureResetZ,
|
|
165
|
+
)
|
|
166
|
+
from mimiqcircuits.operations.gates.delay import Delay
|
|
167
|
+
from mimiqcircuits.operations.noisechannel.standards.projectivenoise import (
|
|
168
|
+
ProjectiveNoise,
|
|
169
|
+
ProjectiveNoiseX,
|
|
170
|
+
ProjectiveNoiseY,
|
|
171
|
+
ProjectiveNoiseZ,
|
|
172
|
+
)
|
|
173
|
+
from mimiqcircuits.operations.pairmeasure import MeasureXX, MeasureYY, MeasureZZ
|
|
174
|
+
from mimiqcircuits.operations.rescaledgates import RescaledGate
|
|
175
|
+
from mimiqcircuits.operations.annotations import (
|
|
176
|
+
AbstractAnnotation,
|
|
177
|
+
Detector,
|
|
178
|
+
QubitCoordinates,
|
|
179
|
+
ShiftCoordinates,
|
|
180
|
+
ObservableInclude,
|
|
181
|
+
Tick,
|
|
182
|
+
)
|
|
183
|
+
from mimiqcircuits.classical.classical_not import Not
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
# Export specific classes, and functions.
|
|
187
|
+
__all__ = [
|
|
188
|
+
"Circuit",
|
|
189
|
+
"BitString",
|
|
190
|
+
"Operation",
|
|
191
|
+
"Control",
|
|
192
|
+
"Parallel",
|
|
193
|
+
"Inverse",
|
|
194
|
+
"Power",
|
|
195
|
+
"Barrier",
|
|
196
|
+
"IfStatement",
|
|
197
|
+
"AbstractMeasurement",
|
|
198
|
+
"Measure",
|
|
199
|
+
"MeasureX",
|
|
200
|
+
"MeasureY",
|
|
201
|
+
"MeasureZ",
|
|
202
|
+
"Reset",
|
|
203
|
+
"ResetX",
|
|
204
|
+
"ResetY",
|
|
205
|
+
"ResetZ",
|
|
206
|
+
"MeasureReset",
|
|
207
|
+
"MeasureResetX",
|
|
208
|
+
"MeasureResetY",
|
|
209
|
+
"MeasureResetZ",
|
|
210
|
+
"Gate",
|
|
211
|
+
"GateCustom",
|
|
212
|
+
"GateU",
|
|
213
|
+
"GateID",
|
|
214
|
+
"GateX",
|
|
215
|
+
"GateY",
|
|
216
|
+
"GateZ",
|
|
217
|
+
"GateH",
|
|
218
|
+
"GateHXY",
|
|
219
|
+
"GateHXZ",
|
|
220
|
+
"GateHYZ",
|
|
221
|
+
"GateS",
|
|
222
|
+
"GateSDG",
|
|
223
|
+
"GateT",
|
|
224
|
+
"GateTDG",
|
|
225
|
+
"GateSX",
|
|
226
|
+
"GateSXDG",
|
|
227
|
+
"GateSY",
|
|
228
|
+
"GateSYDG",
|
|
229
|
+
"GateRX",
|
|
230
|
+
"GateRY",
|
|
231
|
+
"GateRZ",
|
|
232
|
+
"GateR",
|
|
233
|
+
"GateU1",
|
|
234
|
+
"GateU2",
|
|
235
|
+
"GateU3",
|
|
236
|
+
"GateCX",
|
|
237
|
+
"GateCY",
|
|
238
|
+
"GateCZ",
|
|
239
|
+
"GateCH",
|
|
240
|
+
"GateSWAP",
|
|
241
|
+
"GateISWAP",
|
|
242
|
+
"GateCS",
|
|
243
|
+
"GateCSDG",
|
|
244
|
+
"GateCSX",
|
|
245
|
+
"GateCSXDG",
|
|
246
|
+
"GateECR",
|
|
247
|
+
"GateDCX",
|
|
248
|
+
"GateCP",
|
|
249
|
+
"GateCU",
|
|
250
|
+
"GateCRX",
|
|
251
|
+
"GateCRY",
|
|
252
|
+
"GateCRZ",
|
|
253
|
+
"GateRXX",
|
|
254
|
+
"GateRYY",
|
|
255
|
+
"GateRZZ",
|
|
256
|
+
"GateRZX",
|
|
257
|
+
"GateXXplusYY",
|
|
258
|
+
"GateXXminusYY",
|
|
259
|
+
"GateCCX",
|
|
260
|
+
"GateC3X",
|
|
261
|
+
"GateCCP",
|
|
262
|
+
"GateCSWAP",
|
|
263
|
+
"QFT",
|
|
264
|
+
"PhaseGradient",
|
|
265
|
+
"Instruction",
|
|
266
|
+
"GateP",
|
|
267
|
+
"MimiqConnection",
|
|
268
|
+
"GateCall",
|
|
269
|
+
"GateDecl",
|
|
270
|
+
"gatedecl",
|
|
271
|
+
"control",
|
|
272
|
+
"parallel",
|
|
273
|
+
"inverse",
|
|
274
|
+
"power",
|
|
275
|
+
"LazyArg",
|
|
276
|
+
"LazyExpr",
|
|
277
|
+
"Diffusion",
|
|
278
|
+
"PolynomialOracle",
|
|
279
|
+
"QCSResults",
|
|
280
|
+
"AsciiCanvas",
|
|
281
|
+
"AsciiCircuit",
|
|
282
|
+
"AbstractOperator",
|
|
283
|
+
"PauliString",
|
|
284
|
+
"AmplitudeDamping",
|
|
285
|
+
"GeneralizedAmplitudeDamping",
|
|
286
|
+
"SigmaMinus",
|
|
287
|
+
"SigmaPlus",
|
|
288
|
+
"DiagonalOp",
|
|
289
|
+
"Projector0",
|
|
290
|
+
"Projector00",
|
|
291
|
+
"Projector01",
|
|
292
|
+
"Projector1",
|
|
293
|
+
"Projector10",
|
|
294
|
+
"Projector11",
|
|
295
|
+
"Depolarizing",
|
|
296
|
+
"Depolarizing1",
|
|
297
|
+
"Depolarizing2",
|
|
298
|
+
"ProjectorX0",
|
|
299
|
+
"ProjectorX1",
|
|
300
|
+
"ProjectorY0",
|
|
301
|
+
"ProjectorY1",
|
|
302
|
+
"ProjectorZ0",
|
|
303
|
+
"ProjectorZ1",
|
|
304
|
+
"Operator",
|
|
305
|
+
"PauliNoise",
|
|
306
|
+
"krauschannel",
|
|
307
|
+
"PauliX",
|
|
308
|
+
"PauliY",
|
|
309
|
+
"PauliZ",
|
|
310
|
+
"ThermalNoise",
|
|
311
|
+
"PhaseAmplitudeDamping",
|
|
312
|
+
"Kraus",
|
|
313
|
+
"MixedUnitary",
|
|
314
|
+
"QPERFECT_CLOUD",
|
|
315
|
+
"QPERFECT_CLOUD2",
|
|
316
|
+
"Amplitude",
|
|
317
|
+
"ExpectationValue",
|
|
318
|
+
"BondDim",
|
|
319
|
+
"VonNeumannEntropy",
|
|
320
|
+
"SchmidtRank",
|
|
321
|
+
"Delay",
|
|
322
|
+
"ProjectiveNoise",
|
|
323
|
+
"ProjectiveNoiseX",
|
|
324
|
+
"ProjectiveNoiseY",
|
|
325
|
+
"ProjectiveNoiseZ",
|
|
326
|
+
"MeasureZZ",
|
|
327
|
+
"MeasureXX",
|
|
328
|
+
"MeasureYY",
|
|
329
|
+
"RescaledGate",
|
|
330
|
+
"AbstractAnnotation",
|
|
331
|
+
"Detector",
|
|
332
|
+
"QubitCoordinates",
|
|
333
|
+
"ShiftCoordinates",
|
|
334
|
+
"ObservableInclude",
|
|
335
|
+
"Tick",
|
|
336
|
+
"Not",
|
|
337
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.15.3"
|