superquantx 0.1.0__py3-none-any.whl → 0.1.1__py3-none-any.whl

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.
Files changed (51) hide show
  1. superquantx/__init__.py +24 -12
  2. superquantx/algorithms/__init__.py +1 -1
  3. superquantx/algorithms/base_algorithm.py +36 -36
  4. superquantx/algorithms/hybrid_classifier.py +22 -22
  5. superquantx/algorithms/qaoa.py +29 -28
  6. superquantx/algorithms/quantum_agents.py +57 -56
  7. superquantx/algorithms/quantum_kmeans.py +17 -17
  8. superquantx/algorithms/quantum_nn.py +18 -18
  9. superquantx/algorithms/quantum_pca.py +26 -26
  10. superquantx/algorithms/quantum_svm.py +26 -25
  11. superquantx/algorithms/vqe.py +40 -39
  12. superquantx/algorithms.py +56 -55
  13. superquantx/backends/__init__.py +12 -12
  14. superquantx/backends/base_backend.py +25 -24
  15. superquantx/backends/braket_backend.py +21 -21
  16. superquantx/backends/cirq_backend.py +26 -26
  17. superquantx/backends/ocean_backend.py +38 -38
  18. superquantx/backends/pennylane_backend.py +12 -11
  19. superquantx/backends/qiskit_backend.py +12 -12
  20. superquantx/backends/simulator_backend.py +31 -17
  21. superquantx/backends/tket_backend.py +23 -23
  22. superquantx/circuits.py +25 -25
  23. superquantx/cli/commands.py +6 -7
  24. superquantx/cli/main.py +5 -6
  25. superquantx/client.py +42 -42
  26. superquantx/config.py +14 -14
  27. superquantx/datasets/__init__.py +58 -0
  28. superquantx/datasets/molecular.py +307 -0
  29. superquantx/datasets/preprocessing.py +279 -0
  30. superquantx/datasets/quantum_datasets.py +277 -0
  31. superquantx/datasets/synthetic.py +300 -0
  32. superquantx/exceptions.py +29 -29
  33. superquantx/gates.py +26 -26
  34. superquantx/logging_config.py +29 -29
  35. superquantx/measurements.py +53 -54
  36. superquantx/ml.py +51 -52
  37. superquantx/noise.py +49 -49
  38. superquantx/utils/benchmarking.py +41 -36
  39. superquantx/utils/classical_utils.py +32 -32
  40. superquantx/utils/feature_mapping.py +40 -35
  41. superquantx/utils/optimization.py +28 -26
  42. superquantx/utils/quantum_utils.py +47 -48
  43. superquantx/utils/visualization.py +49 -49
  44. superquantx/version.py +3 -3
  45. {superquantx-0.1.0.dist-info → superquantx-0.1.1.dist-info}/METADATA +18 -16
  46. superquantx-0.1.1.dist-info/RECORD +51 -0
  47. superquantx-0.1.1.dist-info/licenses/LICENSE +180 -0
  48. superquantx-0.1.0.dist-info/RECORD +0 -46
  49. superquantx-0.1.0.dist-info/licenses/LICENSE +0 -21
  50. {superquantx-0.1.0.dist-info → superquantx-0.1.1.dist-info}/WHEEL +0 -0
  51. {superquantx-0.1.0.dist-info → superquantx-0.1.1.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,51 @@
1
+ superquantx/__init__.py,sha256=tsmJIGWab6CJ42yn0ZJ-H1nKg4rCNCDGriv5Ip0qNxQ,8825
2
+ superquantx/algorithms.py,sha256=B3ttFuU-5EGk9GPRsmyTC7aEnq8MQ-dJyh2PCcQkqP4,27104
3
+ superquantx/circuits.py,sha256=syMXPzEsu0YwA6T5-GYIU7Nh8zmUwOPxjqh2euHLGAQ,16111
4
+ superquantx/client.py,sha256=tpH-wbRTDZGkcsQIgiU426jxCKqowCmjRMDq5c5xSvk,8910
5
+ superquantx/config.py,sha256=DYc9J2hC__K5MhOWIwi633ayHNFSII4Iwu7jbtV3ymU,10410
6
+ superquantx/exceptions.py,sha256=HCEbaZDERr0NT9AjTE6uwSCcjJhCfqfZg_9kYrWzmoI,9430
7
+ superquantx/gates.py,sha256=WpAsas2YBu1G0lkdy0yjGymMxC-QELKe7YdlfoTVFn8,18120
8
+ superquantx/logging_config.py,sha256=G423PfSL4qapgqhpcKSLh4ntM7oBHNKro0O4S2sMlOU,11126
9
+ superquantx/measurements.py,sha256=xPjbPK32JoSjWG_AoIE-HvvJjPLzA5P7DcXROlFnMfo,22173
10
+ superquantx/ml.py,sha256=1JY3YlYIjGwHzwM5vUepoX8_I8cLs7vD84WcGhCOlN8,29652
11
+ superquantx/noise.py,sha256=azmrWOThOvO71EnRVqvHAKZpVD_XZ1s0j3C32Ib-O3o,23633
12
+ superquantx/version.py,sha256=CXcu4ecRHIxbGCa5bwBMvkSbPoXmdRMx6rFn88Sk_hc,943
13
+ superquantx/algorithms/__init__.py,sha256=X-A9l8G0BTM2AegyyB1Zn_CTtwpkfMnAd5N_CA1Li7g,1540
14
+ superquantx/algorithms/base_algorithm.py,sha256=Ojf4eHAU3QqbP7RtgB-VmUc08wtZR7VUi8QKrq6_HwI,12854
15
+ superquantx/algorithms/hybrid_classifier.py,sha256=qDkiN4JMLpXHE3dCUBupdux9WXqrnxUrqLW--5x5NhA,24446
16
+ superquantx/algorithms/qaoa.py,sha256=1NAisJIj4Tnw1wXFnJBXvPEU5BoTKXeQry3pEjFR4jA,14381
17
+ superquantx/algorithms/quantum_agents.py,sha256=q1wT6oHOqiAau9cB0yS_GlNiEYVMEJBH9_lqZrVtnK8,38963
18
+ superquantx/algorithms/quantum_kmeans.py,sha256=7egeZdb6aGUZRZukTcspRRjPEM9gtKPh_F7j3ouKulY,22648
19
+ superquantx/algorithms/quantum_nn.py,sha256=6wYv_G-0afPOZ4ExIERP8lRLaAMlDOpZVr1yDrS23u8,20441
20
+ superquantx/algorithms/quantum_pca.py,sha256=nntzhxx643z67fDR310LrHg-qHmvj6iYpv3TnKi_u1Y,20091
21
+ superquantx/algorithms/quantum_svm.py,sha256=oXnj5vP1w-kla2_2PcCnMvj7SVWFNGfc3XF05uqGFsE,11604
22
+ superquantx/algorithms/vqe.py,sha256=jsPDyxAFKpg3kRmO43a8JDsbdfpcA9ItKapJRurM0N8,19800
23
+ superquantx/backends/__init__.py,sha256=6hqLOhPyhqVRxzqE-LgKYP9H-8IchuuoPjxcmfvYNig,7809
24
+ superquantx/backends/base_backend.py,sha256=2mXM8XHpHz9Nsa0clDHCnNZdfKwvpvdRaT3DP-LkJoI,13011
25
+ superquantx/backends/braket_backend.py,sha256=xU8ZaVMu4RTFm5zD79jCaNcSp7ii2ejlf1QxSHWR_VY,16205
26
+ superquantx/backends/cirq_backend.py,sha256=LCpJ-j1MMk-BCQVCGWTFQvS8frs_5TK57EKGxXYpvLM,18492
27
+ superquantx/backends/ocean_backend.py,sha256=W43ILeG_ePJbFuYtIx-N1BFPEdp4tSIcENh6HmeAYFY,18482
28
+ superquantx/backends/pennylane_backend.py,sha256=g8KIpkNlCYsk7KxzqFauC7_LkLAtTJjRzfWNMd3Oen8,16646
29
+ superquantx/backends/qiskit_backend.py,sha256=K3NPtAgqFKCHGZ6bSLzCHECHoyb84Gm7nq9PVqCOJ48,17204
30
+ superquantx/backends/simulator_backend.py,sha256=IHSdRChPJprFumM8ai1HKBxXaSIIJJeGqW0C16KkwCY,17886
31
+ superquantx/backends/tket_backend.py,sha256=7ejv6FZ0iRPtxK7fJ9G5j-Mo-s1X74LtCPRclPDsE-k,19050
32
+ superquantx/cli/__init__.py,sha256=A6IZla8yk8ab8Gdm5VSSDknAGkL4Y00ybY7rz9f6QFY,568
33
+ superquantx/cli/commands.py,sha256=Lk23riO_Xw_oH7G0CUaHOxec4EOoIeeLGRKQl5-Fetg,15797
34
+ superquantx/cli/main.py,sha256=brM-hZx0tH0J8IM5a4fa9zrqsXozkPqbdLYkRjJG2uw,6500
35
+ superquantx/datasets/__init__.py,sha256=i-3WuCzPiT_GEMQjmnxQy6KR3nGGOnnd9jzwXRf1aHY,1374
36
+ superquantx/datasets/molecular.py,sha256=qw5JjYR10oPbpYeauaq1orlRfuuLq5qoaSXLJ0PDHAk,8886
37
+ superquantx/datasets/preprocessing.py,sha256=_eb9ghCxDMGWBzIIv2Tk0VRTLeghO026cTzDLf2J6TA,8189
38
+ superquantx/datasets/quantum_datasets.py,sha256=QJ5L3cJUzfLawk1ndHup7NYJ-qx4Js7gBEkOEb5kfac,9011
39
+ superquantx/datasets/synthetic.py,sha256=StC16AfAZm2_l_fB5Kqo_o_HnP8yy-kEVImxuoBHGVo,9159
40
+ superquantx/utils/__init__.py,sha256=W_BByYkPoYNUp83aqmYNup44TKe1Omo-ixIyX6O7qJQ,1745
41
+ superquantx/utils/benchmarking.py,sha256=dtRnk05Ot2mdZ8GnwXmCW1hwlhukEGJWdW_911X6IWk,17205
42
+ superquantx/utils/classical_utils.py,sha256=3_PApxS8t6GqX_aSCXMpfKPodWoZK3LnFV5g-NWaWIw,17002
43
+ superquantx/utils/feature_mapping.py,sha256=ehuWpJzzmaMo3zHqqtVrO4pFQjROL_8EhmylXMXdAnA,14028
44
+ superquantx/utils/optimization.py,sha256=9h3o-F9JVRqt38Lc217PdwPWyL9mPhZydT69KccRN7k,11917
45
+ superquantx/utils/quantum_utils.py,sha256=E23IFR_QNYQ86i4CTccwLF0XyTJPymIccAu2rJ0bNjI,12535
46
+ superquantx/utils/visualization.py,sha256=JxwKUQKxI2Oa9z63On5q6I1KUfinVzk6H32qeRaJv6U,19058
47
+ superquantx-0.1.1.dist-info/METADATA,sha256=F3cwSEofQfRSIgfaST5aRo7Rzo0TxkjAc0-KkvOOkRE,15546
48
+ superquantx-0.1.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
49
+ superquantx-0.1.1.dist-info/entry_points.txt,sha256=zzCcbhh_HWK1li0Wkw8OXRNfUCai6yO01f-Bolz-_Fo,53
50
+ superquantx-0.1.1.dist-info/licenses/LICENSE,sha256=Ec8mBLnNy1EdCiS4xy48Vp3zGoo3S3QyHo5tqUFQ-s0,10264
51
+ superquantx-0.1.1.dist-info/RECORD,,
@@ -0,0 +1,180 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity granting the License.
13
+
14
+ "Legal Entity" shall mean the union of the acting entity and all
15
+ other entities that control, are controlled by, or are under common
16
+ control with that entity. For the purposes of this definition,
17
+ "control" means (i) the power, direct or indirect, to cause the
18
+ direction or management of such entity, whether by contract or
19
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
20
+ outstanding shares, or (iii) beneficial ownership of such entity.
21
+
22
+ "You" (or "Your") shall mean an individual or Legal Entity
23
+ exercising permissions granted by this License.
24
+
25
+ "Source" shall mean the preferred form for making modifications,
26
+ including but not limited to software source code, documentation
27
+ source, and configuration files.
28
+
29
+ "Object" shall mean any form resulting from mechanical
30
+ transformation or translation of a Source form, including but
31
+ not limited to compiled object code, generated documentation,
32
+ and conversions to other media types.
33
+
34
+ "Work" shall mean the work of authorship covered by this License,
35
+ whether in Source or Object form, made available under the License,
36
+ as indicated by a copyright notice that is included in or attached
37
+ to the work. (For the purposes of this definition, "derivative works"
38
+ shall not include works that remain separable from, or merely link
39
+ (or bind by name) to the interfaces of, the Original Work and its
40
+ derivative works.)
41
+
42
+ "Derivative Works" shall mean any work, whether in Source or Object
43
+ form, that is based upon (or derived from) the Work and for which the
44
+ editorial revisions, annotations, elaborations, or other modifications
45
+ represent, as a whole, an original work of authorship. For the purposes
46
+ of this License, Derivative Works shall not include works that remain
47
+ separable from, or merely link (or bind by name) to the interfaces of,
48
+ the Work and related derivative works.
49
+
50
+ "Contribution" shall mean any work of authorship, including
51
+ the original version of the Work and any modifications or additions
52
+ to that Work or Derivative Works thereof, that is intentionally
53
+ submitted to Licensor for inclusion in the Work by the copyright owner
54
+ or by an individual or Legal Entity authorized to submit on behalf of
55
+ the copyright owner. For the purposes of this definition, "submitted"
56
+ means any form of electronic, verbal, or written communication sent
57
+ to the Licensor or its representatives, including but not limited to
58
+ communication on electronic mailing lists, source code control
59
+ systems, and issue tracking systems that are managed by, or on behalf
60
+ of, the Licensor for the purpose of discussing and improving the Work,
61
+ but excluding communication that is conspicuously marked or otherwise
62
+ designated in writing by the copyright owner as "Not a Contribution."
63
+
64
+ "Contributor" shall mean Licensor and any individual or Legal Entity
65
+ on behalf of whom a Contribution has been received by Licensor and
66
+ subsequently incorporated within the Work.
67
+
68
+ 2. Grant of Copyright License. Subject to the terms and conditions of
69
+ this License, each Contributor hereby grants to You a perpetual,
70
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
71
+ copyright license to use, reproduce, modify, distribute, prepare
72
+ Derivative Works of, publicly display, publicly perform, sublicense,
73
+ and distribute the Work and such Derivative Works in Source or Object
74
+ form.
75
+
76
+ 3. Grant of Patent License. Subject to the terms and conditions of
77
+ this License, each Contributor hereby grants to You a perpetual,
78
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
79
+ (except as stated in this section) patent license to make, have made,
80
+ use, offer to sell, sell, import, and otherwise transfer the Work,
81
+ where such license applies only to those patent claims licensable
82
+ by such Contributor that are necessarily infringed by their
83
+ Contribution(s) alone or by combination of their Contribution(s)
84
+ with the Work to which such Contribution(s) was submitted. If You
85
+ institute patent litigation against any entity (including a
86
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
87
+ or a Contribution incorporated within the Work constitutes direct
88
+ or contributory patent infringement, then any patent licenses
89
+ granted to You under this License for that Work shall terminate
90
+ as of the date such litigation is filed.
91
+
92
+ 4. Redistribution. You must retain, on each copy of the Work or
93
+ Derivative Works thereof, all copyright, patent, trademark, and
94
+ attribution notices from the Source form of the Work,
95
+ excluding those notices that do not pertain to any part of
96
+ the Derivative Works; and
97
+
98
+ If the Work includes a "NOTICE" text file as part of its
99
+ distribution, then any Derivative Works that You distribute must
100
+ include a readable copy of the attribution notices contained
101
+ within such NOTICE file, excluding those notices that do not
102
+ pertain to any part of the Derivative Works, in at least one
103
+ of the following places: within a NOTICE text file distributed
104
+ as part of the Derivative Works; within the Source form or
105
+ documentation, if provided along with the Derivative Works; or,
106
+ within a display generated by the Derivative Works, if and
107
+ wherever such third-party notices normally appear. The contents
108
+ of the NOTICE file are for informational purposes only and
109
+ do not modify the License. You may add Your own attribution
110
+ notices within Derivative Works that You distribute, alongside
111
+ or as an addendum to the NOTICE text from the Work, provided
112
+ that such additional attribution notices cannot be construed
113
+ as modifying the License.
114
+
115
+ You may add Your own copyright notice to Your modifications and
116
+ may provide additional or different license terms and conditions
117
+ for use, reproduction, or distribution of Your modifications, or
118
+ for any such Derivative Works as a whole, provided Your use,
119
+ reproduction, and distribution of the Work otherwise complies with
120
+ the conditions stated in this License.
121
+
122
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
123
+ any Contribution intentionally submitted for inclusion in the Work
124
+ by You to the Licensor shall be under the terms and conditions of
125
+ this License, without any additional terms or conditions.
126
+ Notwithstanding the above, nothing herein shall supersede or modify
127
+ the terms of any separate license agreement you may have executed
128
+ with Licensor regarding such Contributions.
129
+
130
+ 6. Trademarks. This License does not grant permission to use the trade
131
+ names, trademarks, service marks, or product names of the Licensor,
132
+ except as required for reasonable and customary use in describing the
133
+ origin of the Work and reproducing the content of the NOTICE file.
134
+
135
+ 7. Disclaimer of Warranty. Unless required by applicable law or
136
+ agreed to in writing, Licensor provides the Work (and each
137
+ Contributor provides its Contributions) on an "AS IS" BASIS,
138
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
139
+ implied, including, without limitation, any warranties or conditions
140
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
141
+ PARTICULAR PURPOSE. You are solely responsible for determining the
142
+ appropriateness of using or redistributing the Work and assume any
143
+ risks associated with Your exercise of permissions under this License.
144
+
145
+ 8. Limitation of Liability. In no event and under no legal theory,
146
+ whether in tort (including negligence), contract, or otherwise,
147
+ unless required by applicable law (such as deliberate and grossly
148
+ negligent acts) or agreed to in writing, shall any Contributor be
149
+ liable to You for damages, including any direct, indirect, special,
150
+ incidental, or consequential damages of any character arising as a
151
+ result of this License or out of the use or inability to use the
152
+ Work (including but not limited to damages for loss of goodwill,
153
+ work stoppage, computer failure or malfunction, or any and all
154
+ other commercial damages or losses), even if such Contributor
155
+ has been advised of the possibility of such damages.
156
+
157
+ 9. Accepting Warranty or Support. You may choose to offer, and to
158
+ charge a fee for, warranty, support, indemnity or other liability
159
+ obligations and/or rights consistent with this License. However, in
160
+ accepting such obligations, You may act only on Your own behalf and
161
+ on Your sole responsibility, not on behalf of any other Contributor,
162
+ and only if You agree to indemnify, defend, and hold each Contributor
163
+ harmless for any liability incurred by, or claims asserted against,
164
+ such Contributor by reason of your accepting any such warranty or support.
165
+
166
+ END OF TERMS AND CONDITIONS
167
+
168
+ Copyright 2025 Superagentic AI
169
+
170
+ Licensed under the Apache License, Version 2.0 (the "License");
171
+ you may not use this file except in compliance with the License.
172
+ You may obtain a copy of the License at
173
+
174
+ http://www.apache.org/licenses/LICENSE-2.0
175
+
176
+ Unless required by applicable law or agreed to in writing, software
177
+ distributed under the License is distributed on an "AS IS" BASIS,
178
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
179
+ See the License for the specific language governing permissions and
180
+ limitations under the License.
@@ -1,46 +0,0 @@
1
- superquantx/__init__.py,sha256=kgtEA1h-KY7NbcfEl_pO1qr6nhnPRPs0pGzp0GLI8-w,8585
2
- superquantx/algorithms.py,sha256=sGDVIpA2632fdCAAfQwSW8P3yZ9RBG8qAUtCccsNwUg,27448
3
- superquantx/circuits.py,sha256=Mzwc9hfamBeE98nNALkJqx6ZYSgJf6BmZdcIX1sBFgg,16232
4
- superquantx/client.py,sha256=dMUgTTOT6RttezHlqxXTBhLXn8jHEYTiqxi50Ss83BY,9171
5
- superquantx/config.py,sha256=kc_THN1a09C6buzWQPsbi4npVzRpJTyJexqqC-cFu6U,10467
6
- superquantx/exceptions.py,sha256=vAjwkMjoeCIp8KxP6UzX6EQsocOT3Qup7ze5bjiBMiU,9587
7
- superquantx/gates.py,sha256=b5DJMqaKIgYaT_WQ8o5dkeA3RPZPojfgXx54Du5zhUo,18214
8
- superquantx/logging_config.py,sha256=6bpVQCaoDOhg8uv2JwQkgzEIPE4UJZgFjEn5N6H1HMw,11311
9
- superquantx/measurements.py,sha256=4R9G125QCkeaGuwjjjZeCvYEiQE3CeENcmMatKDKSv8,22534
10
- superquantx/ml.py,sha256=4NE9nwLsUF8VMS8FVKl7-NlxyG5Mlowhyx1t9tnqPW4,30058
11
- superquantx/noise.py,sha256=erOqXOpiGJ75G6rSPIZlf5APzsZassUO2w9UheVT2Qw,23858
12
- superquantx/version.py,sha256=6qe2Iq0axROsECE_QTmfCecfXlevrV6vUiJ4l5-zIh8,943
13
- superquantx/algorithms/__init__.py,sha256=vf6ziOAgzxylfpSnUN2tGUNW8aD_Znrlktnxym83-J8,1542
14
- superquantx/algorithms/base_algorithm.py,sha256=ISdYoymfz2r6nUYhlKylbuEc6OewSROpRpRa1EbOTJ8,13102
15
- superquantx/algorithms/hybrid_classifier.py,sha256=jxN9dqD5un-RZV1yx-L3ygsL2uocXA0Wfqmgua98vlQ,24578
16
- superquantx/algorithms/qaoa.py,sha256=KESdmVbJEE6tUsKbtKqCQO5lkxRcslORw08jDidVnUc,14567
17
- superquantx/algorithms/quantum_agents.py,sha256=gSTgS2hy2FJBFa1mKMg4dWnMDpjgaKSSO0Ix9QFM5Tk,39062
18
- superquantx/algorithms/quantum_kmeans.py,sha256=Bf9WmtCyGwnKjoKTc6LYt_hR10UmeSAQyY_mDfa8G6s,22749
19
- superquantx/algorithms/quantum_nn.py,sha256=PWtGAyewN-peGvB6m8Vp5lJ3ZXV-nXI8kWNzgaET0UM,20568
20
- superquantx/algorithms/quantum_pca.py,sha256=TEF0XfXsGfnjJRDKUhKixVckYTrBxg136eUwwtmU4Po,20213
21
- superquantx/algorithms/quantum_svm.py,sha256=JwmNr5dsAbaBIbycWUBl0T065Ytxpro7QcB86IrdyYg,11762
22
- superquantx/algorithms/vqe.py,sha256=BUt5XZTmJ66qFX1BDYvHQTEqbQzcEcik3hFbDSeRgCs,20044
23
- superquantx/backends/__init__.py,sha256=DWnlvvJ5GVhWsYq0zAPJJpMEXslKL_AukSZd3kIeAJo,7878
24
- superquantx/backends/base_backend.py,sha256=e33U6Gpjwt_snPyIO7e0qeZBcQTTrmVJGR7_rYyDydY,13100
25
- superquantx/backends/braket_backend.py,sha256=hgGbS7jGraMGQChMX7HMqYTML-EvrK-RFRReMuG1p3s,16220
26
- superquantx/backends/cirq_backend.py,sha256=-Ke2d2Mi0bQOnxMlrAQF1ICxJjBGNOrn8tWqqZmbPmQ,18600
27
- superquantx/backends/ocean_backend.py,sha256=d-pyxhwLm8ClywPJT1dsvd_1wCdf_3Dm7wyl6RiNtks,18491
28
- superquantx/backends/pennylane_backend.py,sha256=AKl-fL47nqU0ZqsZlsqJmFQlsjqvNNeAtcgGTe76nTY,16680
29
- superquantx/backends/qiskit_backend.py,sha256=rBgooF_O9uIIcrr0sCx0VjVutFcOPhkbJCbLg8rmIoM,17251
30
- superquantx/backends/simulator_backend.py,sha256=OhE0Lko9x0lr_GokLD0EmP_ALcPq4szLsmYSAlrzrnQ,17341
31
- superquantx/backends/tket_backend.py,sha256=qselp4s_fZfKdgOR0w662j8lHggy4-01pYqBl-tslEo,19034
32
- superquantx/cli/__init__.py,sha256=A6IZla8yk8ab8Gdm5VSSDknAGkL4Y00ybY7rz9f6QFY,568
33
- superquantx/cli/commands.py,sha256=I_ftOow1LBR94DlvjaB36Tg02v6kikSB1o_107tsVaU,15858
34
- superquantx/cli/main.py,sha256=-jnP4B_IN5QL3tK58HacGik2pdzUItxnRc5dLgnRAWU,6555
35
- superquantx/utils/__init__.py,sha256=W_BByYkPoYNUp83aqmYNup44TKe1Omo-ixIyX6O7qJQ,1745
36
- superquantx/utils/benchmarking.py,sha256=2AmzhygL2VETGAbNKtG2rjwvDpeldSeEVwoI105dlbQ,17148
37
- superquantx/utils/classical_utils.py,sha256=_kzd-PktlF3JsLME18xum_Kbd8FHis3q77vh-Ay0fJE,17128
38
- superquantx/utils/feature_mapping.py,sha256=tkEa7wpZ3qog-VXnZyb9co4uujO7QI1n4eWpXAjMahM,14059
39
- superquantx/utils/optimization.py,sha256=YZ3nT0XhZ7uKM47jUQktLIdogIpNlhNxkyE07Iwd4zE,11973
40
- superquantx/utils/quantum_utils.py,sha256=6LQ-3lFHLY6pSiINZjt_MZ56PH4gcPvaam4BbPDEd3Q,12674
41
- superquantx/utils/visualization.py,sha256=stZIG-qucJ0HPkyIR7ygCa4UmAcEA9R7lrK7h7cf5IQ,19131
42
- superquantx-0.1.0.dist-info/METADATA,sha256=j1OUIGzt3RZL0ltiNLXFzt7O37ARgffrF6GbCJIHwmw,15292
43
- superquantx-0.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
44
- superquantx-0.1.0.dist-info/entry_points.txt,sha256=zzCcbhh_HWK1li0Wkw8OXRNfUCai6yO01f-Bolz-_Fo,53
45
- superquantx-0.1.0.dist-info/licenses/LICENSE,sha256=BSfiUnkti0ZEg9J6ojq65utXmym91LF3QxHpIzPqWxc,1072
46
- superquantx-0.1.0.dist-info/RECORD,,
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2024 SuperQuantX Team
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.