mqt-core 3.2.1__cp314-cp314-win_arm64.whl → 3.3.1__cp314-cp314-win_arm64.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.

Potentially problematic release.


This version of mqt-core might be problematic. Click here for more details.

Files changed (242) hide show
  1. mqt/core/__init__.py +3 -3
  2. mqt/core/_commands.py +2 -2
  3. mqt/core/_version.py +16 -3
  4. mqt/core/bin/mqt-core-algorithms.dll +0 -0
  5. mqt/core/bin/mqt-core-circuit-optimizer.dll +0 -0
  6. mqt/core/bin/mqt-core-dd.dll +0 -0
  7. mqt/core/bin/mqt-core-ds.dll +0 -0
  8. mqt/core/bin/mqt-core-fomac.dll +0 -0
  9. mqt/core/bin/mqt-core-ir.dll +0 -0
  10. mqt/core/bin/mqt-core-na-fomac.dll +0 -0
  11. mqt/core/bin/mqt-core-na.dll +0 -0
  12. mqt/core/bin/mqt-core-qasm.dll +0 -0
  13. mqt/core/bin/mqt-core-qdmi-driver.dll +0 -0
  14. mqt/core/bin/mqt-core-qdmi-na-device.dll +0 -0
  15. mqt/core/bin/mqt-core-zx.dll +0 -0
  16. mqt/core/dd.cp314-win_arm64.pyd +0 -0
  17. mqt/core/dd.pyi +5 -7
  18. mqt/core/fomac.cp314-win_arm64.pyd +0 -0
  19. mqt/core/fomac.pyi +125 -0
  20. mqt/core/include/mqt-core/circuit_optimizer/CircuitOptimizer.hpp +13 -0
  21. mqt/core/include/mqt-core/dd/CachedEdge.hpp +7 -0
  22. mqt/core/include/mqt-core/dd/Operations.hpp +12 -14
  23. mqt/core/include/mqt-core/fomac/FoMaC.hpp +568 -0
  24. mqt/core/include/mqt-core/ir/QuantumComputation.hpp +29 -28
  25. mqt/core/include/mqt-core/ir/operations/CompoundOperation.hpp +2 -0
  26. mqt/core/include/mqt-core/ir/operations/IfElseOperation.hpp +169 -0
  27. mqt/core/include/mqt-core/ir/operations/OpType.hpp +3 -0
  28. mqt/core/include/mqt-core/ir/operations/OpType.inc +2 -2
  29. mqt/core/include/mqt-core/ir/operations/Operation.hpp +3 -1
  30. mqt/core/include/mqt-core/ir/operations/StandardOperation.hpp +2 -0
  31. mqt/core/include/mqt-core/mqt_na_qdmi/device.h +602 -0
  32. mqt/core/include/mqt-core/mqt_na_qdmi/types.h +78 -0
  33. mqt/core/include/mqt-core/na/device/Device.hpp +410 -0
  34. mqt/core/include/mqt-core/na/device/DeviceMemberInitializers.hpp +724 -0
  35. mqt/core/include/mqt-core/na/device/Generator.hpp +447 -0
  36. mqt/core/include/mqt-core/na/fomac/Device.hpp +169 -0
  37. mqt/core/include/mqt-core/qdmi/Driver.hpp +431 -0
  38. mqt/core/include/nlohmann/adl_serializer.hpp +55 -0
  39. mqt/core/include/nlohmann/byte_container_with_subtype.hpp +103 -0
  40. mqt/core/include/nlohmann/detail/abi_macros.hpp +111 -0
  41. mqt/core/include/nlohmann/detail/conversions/from_json.hpp +577 -0
  42. mqt/core/include/nlohmann/detail/conversions/to_chars.hpp +1118 -0
  43. mqt/core/include/nlohmann/detail/conversions/to_json.hpp +479 -0
  44. mqt/core/include/nlohmann/detail/exceptions.hpp +291 -0
  45. mqt/core/include/nlohmann/detail/hash.hpp +129 -0
  46. mqt/core/include/nlohmann/detail/input/binary_reader.hpp +3068 -0
  47. mqt/core/include/nlohmann/detail/input/input_adapters.hpp +549 -0
  48. mqt/core/include/nlohmann/detail/input/json_sax.hpp +986 -0
  49. mqt/core/include/nlohmann/detail/input/lexer.hpp +1643 -0
  50. mqt/core/include/nlohmann/detail/input/parser.hpp +519 -0
  51. mqt/core/include/nlohmann/detail/input/position_t.hpp +37 -0
  52. mqt/core/include/nlohmann/detail/iterators/internal_iterator.hpp +35 -0
  53. mqt/core/include/nlohmann/detail/iterators/iter_impl.hpp +760 -0
  54. mqt/core/include/nlohmann/detail/iterators/iteration_proxy.hpp +235 -0
  55. mqt/core/include/nlohmann/detail/iterators/iterator_traits.hpp +61 -0
  56. mqt/core/include/nlohmann/detail/iterators/json_reverse_iterator.hpp +130 -0
  57. mqt/core/include/nlohmann/detail/iterators/primitive_iterator.hpp +132 -0
  58. mqt/core/include/nlohmann/detail/json_custom_base_class.hpp +39 -0
  59. mqt/core/include/nlohmann/detail/json_pointer.hpp +988 -0
  60. mqt/core/include/nlohmann/detail/json_ref.hpp +78 -0
  61. mqt/core/include/nlohmann/detail/macro_scope.hpp +595 -0
  62. mqt/core/include/nlohmann/detail/macro_unscope.hpp +46 -0
  63. mqt/core/include/nlohmann/detail/meta/call_std/begin.hpp +17 -0
  64. mqt/core/include/nlohmann/detail/meta/call_std/end.hpp +17 -0
  65. mqt/core/include/nlohmann/detail/meta/cpp_future.hpp +171 -0
  66. mqt/core/include/nlohmann/detail/meta/detected.hpp +70 -0
  67. mqt/core/include/nlohmann/detail/meta/identity_tag.hpp +21 -0
  68. mqt/core/include/nlohmann/detail/meta/is_sax.hpp +159 -0
  69. mqt/core/include/nlohmann/detail/meta/std_fs.hpp +29 -0
  70. mqt/core/include/nlohmann/detail/meta/type_traits.hpp +795 -0
  71. mqt/core/include/nlohmann/detail/meta/void_t.hpp +24 -0
  72. mqt/core/include/nlohmann/detail/output/binary_writer.hpp +1850 -0
  73. mqt/core/include/nlohmann/detail/output/output_adapters.hpp +147 -0
  74. mqt/core/include/nlohmann/detail/output/serializer.hpp +988 -0
  75. mqt/core/include/nlohmann/detail/string_concat.hpp +146 -0
  76. mqt/core/include/nlohmann/detail/string_escape.hpp +72 -0
  77. mqt/core/include/nlohmann/detail/string_utils.hpp +37 -0
  78. mqt/core/include/nlohmann/detail/value_t.hpp +118 -0
  79. mqt/core/include/nlohmann/json.hpp +5306 -0
  80. mqt/core/include/nlohmann/json_fwd.hpp +75 -0
  81. mqt/core/include/nlohmann/ordered_map.hpp +359 -0
  82. mqt/core/include/nlohmann/thirdparty/hedley/hedley.hpp +2045 -0
  83. mqt/core/include/nlohmann/thirdparty/hedley/hedley_undef.hpp +158 -0
  84. mqt/core/include/qdmi/qdmi/client.h +990 -0
  85. mqt/core/include/qdmi/qdmi/constants.h +1139 -0
  86. mqt/core/include/qdmi/qdmi/device.h +602 -0
  87. mqt/core/include/qdmi/qdmi/types.h +78 -0
  88. mqt/core/include/spdlog/async.h +99 -0
  89. mqt/core/include/spdlog/async_logger-inl.h +84 -0
  90. mqt/core/include/spdlog/async_logger.h +74 -0
  91. mqt/core/include/spdlog/cfg/argv.h +40 -0
  92. mqt/core/include/spdlog/cfg/env.h +36 -0
  93. mqt/core/include/spdlog/cfg/helpers-inl.h +107 -0
  94. mqt/core/include/spdlog/cfg/helpers.h +29 -0
  95. mqt/core/include/spdlog/common-inl.h +68 -0
  96. mqt/core/include/spdlog/common.h +406 -0
  97. mqt/core/include/spdlog/details/backtracer-inl.h +63 -0
  98. mqt/core/include/spdlog/details/backtracer.h +45 -0
  99. mqt/core/include/spdlog/details/circular_q.h +115 -0
  100. mqt/core/include/spdlog/details/console_globals.h +28 -0
  101. mqt/core/include/spdlog/details/file_helper-inl.h +153 -0
  102. mqt/core/include/spdlog/details/file_helper.h +61 -0
  103. mqt/core/include/spdlog/details/fmt_helper.h +141 -0
  104. mqt/core/include/spdlog/details/log_msg-inl.h +44 -0
  105. mqt/core/include/spdlog/details/log_msg.h +40 -0
  106. mqt/core/include/spdlog/details/log_msg_buffer-inl.h +54 -0
  107. mqt/core/include/spdlog/details/log_msg_buffer.h +32 -0
  108. mqt/core/include/spdlog/details/mpmc_blocking_q.h +177 -0
  109. mqt/core/include/spdlog/details/null_mutex.h +35 -0
  110. mqt/core/include/spdlog/details/os-inl.h +606 -0
  111. mqt/core/include/spdlog/details/os.h +127 -0
  112. mqt/core/include/spdlog/details/periodic_worker-inl.h +26 -0
  113. mqt/core/include/spdlog/details/periodic_worker.h +58 -0
  114. mqt/core/include/spdlog/details/registry-inl.h +270 -0
  115. mqt/core/include/spdlog/details/registry.h +131 -0
  116. mqt/core/include/spdlog/details/synchronous_factory.h +22 -0
  117. mqt/core/include/spdlog/details/tcp_client-windows.h +135 -0
  118. mqt/core/include/spdlog/details/tcp_client.h +127 -0
  119. mqt/core/include/spdlog/details/thread_pool-inl.h +126 -0
  120. mqt/core/include/spdlog/details/thread_pool.h +117 -0
  121. mqt/core/include/spdlog/details/udp_client-windows.h +98 -0
  122. mqt/core/include/spdlog/details/udp_client.h +81 -0
  123. mqt/core/include/spdlog/details/windows_include.h +11 -0
  124. mqt/core/include/spdlog/fmt/bin_to_hex.h +224 -0
  125. mqt/core/include/spdlog/fmt/bundled/args.h +220 -0
  126. mqt/core/include/spdlog/fmt/bundled/base.h +2989 -0
  127. mqt/core/include/spdlog/fmt/bundled/chrono.h +2330 -0
  128. mqt/core/include/spdlog/fmt/bundled/color.h +637 -0
  129. mqt/core/include/spdlog/fmt/bundled/compile.h +539 -0
  130. mqt/core/include/spdlog/fmt/bundled/core.h +5 -0
  131. mqt/core/include/spdlog/fmt/bundled/fmt.license.rst +27 -0
  132. mqt/core/include/spdlog/fmt/bundled/format-inl.h +1948 -0
  133. mqt/core/include/spdlog/fmt/bundled/format.h +4244 -0
  134. mqt/core/include/spdlog/fmt/bundled/os.h +427 -0
  135. mqt/core/include/spdlog/fmt/bundled/ostream.h +167 -0
  136. mqt/core/include/spdlog/fmt/bundled/printf.h +633 -0
  137. mqt/core/include/spdlog/fmt/bundled/ranges.h +850 -0
  138. mqt/core/include/spdlog/fmt/bundled/std.h +728 -0
  139. mqt/core/include/spdlog/fmt/bundled/xchar.h +369 -0
  140. mqt/core/include/spdlog/fmt/chrono.h +23 -0
  141. mqt/core/include/spdlog/fmt/compile.h +23 -0
  142. mqt/core/include/spdlog/fmt/fmt.h +30 -0
  143. mqt/core/include/spdlog/fmt/ostr.h +23 -0
  144. mqt/core/include/spdlog/fmt/ranges.h +23 -0
  145. mqt/core/include/spdlog/fmt/std.h +24 -0
  146. mqt/core/include/spdlog/fmt/xchar.h +23 -0
  147. mqt/core/include/spdlog/formatter.h +17 -0
  148. mqt/core/include/spdlog/fwd.h +18 -0
  149. mqt/core/include/spdlog/logger-inl.h +198 -0
  150. mqt/core/include/spdlog/logger.h +379 -0
  151. mqt/core/include/spdlog/mdc.h +52 -0
  152. mqt/core/include/spdlog/pattern_formatter-inl.h +1340 -0
  153. mqt/core/include/spdlog/pattern_formatter.h +118 -0
  154. mqt/core/include/spdlog/sinks/android_sink.h +137 -0
  155. mqt/core/include/spdlog/sinks/ansicolor_sink-inl.h +142 -0
  156. mqt/core/include/spdlog/sinks/ansicolor_sink.h +116 -0
  157. mqt/core/include/spdlog/sinks/base_sink-inl.h +59 -0
  158. mqt/core/include/spdlog/sinks/base_sink.h +51 -0
  159. mqt/core/include/spdlog/sinks/basic_file_sink-inl.h +48 -0
  160. mqt/core/include/spdlog/sinks/basic_file_sink.h +66 -0
  161. mqt/core/include/spdlog/sinks/callback_sink.h +56 -0
  162. mqt/core/include/spdlog/sinks/daily_file_sink.h +254 -0
  163. mqt/core/include/spdlog/sinks/dist_sink.h +81 -0
  164. mqt/core/include/spdlog/sinks/dup_filter_sink.h +91 -0
  165. mqt/core/include/spdlog/sinks/hourly_file_sink.h +193 -0
  166. mqt/core/include/spdlog/sinks/kafka_sink.h +119 -0
  167. mqt/core/include/spdlog/sinks/mongo_sink.h +108 -0
  168. mqt/core/include/spdlog/sinks/msvc_sink.h +68 -0
  169. mqt/core/include/spdlog/sinks/null_sink.h +41 -0
  170. mqt/core/include/spdlog/sinks/ostream_sink.h +43 -0
  171. mqt/core/include/spdlog/sinks/qt_sinks.h +304 -0
  172. mqt/core/include/spdlog/sinks/ringbuffer_sink.h +67 -0
  173. mqt/core/include/spdlog/sinks/rotating_file_sink-inl.h +179 -0
  174. mqt/core/include/spdlog/sinks/rotating_file_sink.h +93 -0
  175. mqt/core/include/spdlog/sinks/sink-inl.h +22 -0
  176. mqt/core/include/spdlog/sinks/sink.h +34 -0
  177. mqt/core/include/spdlog/sinks/stdout_color_sinks-inl.h +38 -0
  178. mqt/core/include/spdlog/sinks/stdout_color_sinks.h +49 -0
  179. mqt/core/include/spdlog/sinks/stdout_sinks-inl.h +127 -0
  180. mqt/core/include/spdlog/sinks/stdout_sinks.h +84 -0
  181. mqt/core/include/spdlog/sinks/syslog_sink.h +104 -0
  182. mqt/core/include/spdlog/sinks/systemd_sink.h +121 -0
  183. mqt/core/include/spdlog/sinks/tcp_sink.h +75 -0
  184. mqt/core/include/spdlog/sinks/udp_sink.h +69 -0
  185. mqt/core/include/spdlog/sinks/win_eventlog_sink.h +260 -0
  186. mqt/core/include/spdlog/sinks/wincolor_sink-inl.h +172 -0
  187. mqt/core/include/spdlog/sinks/wincolor_sink.h +82 -0
  188. mqt/core/include/spdlog/spdlog-inl.h +96 -0
  189. mqt/core/include/spdlog/spdlog.h +357 -0
  190. mqt/core/include/spdlog/stopwatch.h +66 -0
  191. mqt/core/include/spdlog/tweakme.h +148 -0
  192. mqt/core/include/spdlog/version.h +11 -0
  193. mqt/core/ir/__init__.pyi +83 -45
  194. mqt/core/ir/operations.pyi +40 -27
  195. mqt/core/ir.cp314-win_arm64.pyd +0 -0
  196. mqt/core/lib/mqt-core-circuit-optimizer.lib +0 -0
  197. mqt/core/lib/mqt-core-dd.lib +0 -0
  198. mqt/core/lib/mqt-core-fomac.lib +0 -0
  199. mqt/core/lib/mqt-core-ir.lib +0 -0
  200. mqt/core/lib/mqt-core-na-fomac.lib +0 -0
  201. mqt/core/lib/mqt-core-qasm.lib +0 -0
  202. mqt/core/lib/mqt-core-qdmi-driver.lib +0 -0
  203. mqt/core/lib/mqt-core-qdmi-na-device-gen.lib +0 -0
  204. mqt/core/lib/mqt-core-qdmi-na-device.lib +0 -0
  205. mqt/core/lib/pkgconfig/spdlog.pc +13 -0
  206. mqt/core/lib/spdlog.lib +0 -0
  207. mqt/core/na/__init__.py +12 -0
  208. mqt/core/na/fomac.cp314-win_arm64.pyd +0 -0
  209. mqt/core/na/fomac.pyi +117 -0
  210. mqt/core/nlohmann_json.natvis +278 -0
  211. mqt/core/plugins/qiskit/mqt_to_qiskit.py +75 -11
  212. mqt/core/plugins/qiskit/qiskit_to_mqt.py +108 -5
  213. mqt/core/share/cmake/mqt-core/AddMQTPythonBinding.cmake +3 -0
  214. mqt/core/share/cmake/mqt-core/Cache.cmake +17 -16
  215. mqt/core/share/cmake/mqt-core/PackageAddTest.cmake +6 -0
  216. mqt/core/share/cmake/mqt-core/StandardProjectSettings.cmake +1 -1
  217. mqt/core/share/cmake/mqt-core/mqt-core-config-version.cmake +3 -3
  218. mqt/core/share/cmake/mqt-core/mqt-core-config.cmake +3 -0
  219. mqt/core/share/cmake/mqt-core/mqt-core-targets-release.cmake +51 -0
  220. mqt/core/share/cmake/mqt-core/mqt-core-targets.cmake +124 -3
  221. mqt/core/share/cmake/nlohmann_json/nlohmann_jsonConfig.cmake +15 -0
  222. mqt/core/share/cmake/nlohmann_json/nlohmann_jsonConfigVersion.cmake +20 -0
  223. mqt/core/share/cmake/nlohmann_json/nlohmann_jsonTargets.cmake +110 -0
  224. mqt/core/share/cmake/qdmi/Cache.cmake +44 -0
  225. mqt/core/share/cmake/qdmi/PrefixHandling.cmake +78 -0
  226. mqt/core/share/cmake/qdmi/prefix_defs.txt +26 -0
  227. mqt/core/share/cmake/qdmi/qdmi-config-version.cmake +85 -0
  228. mqt/core/share/cmake/qdmi/qdmi-config.cmake +42 -0
  229. mqt/core/share/cmake/qdmi/qdmi-targets.cmake +129 -0
  230. mqt/core/share/cmake/spdlog/spdlogConfig.cmake +44 -0
  231. mqt/core/share/cmake/spdlog/spdlogConfigTargets-release.cmake +19 -0
  232. mqt/core/share/cmake/spdlog/spdlogConfigTargets.cmake +121 -0
  233. mqt/core/share/cmake/spdlog/spdlogConfigVersion.cmake +65 -0
  234. mqt/core/share/pkgconfig/nlohmann_json.pc +7 -0
  235. mqt_core-3.3.1.dist-info/DELVEWHEEL +2 -0
  236. {mqt_core-3.2.1.dist-info → mqt_core-3.3.1.dist-info}/METADATA +74 -33
  237. {mqt_core-3.2.1.dist-info → mqt_core-3.3.1.dist-info}/RECORD +240 -46
  238. {mqt_core-3.2.1.dist-info → mqt_core-3.3.1.dist-info}/WHEEL +1 -1
  239. mqt/core/include/mqt-core/ir/operations/ClassicControlledOperation.hpp +0 -156
  240. mqt_core-3.2.1.dist-info/DELVEWHEEL +0 -2
  241. {mqt_core-3.2.1.dist-info → mqt_core-3.3.1.dist-info}/entry_points.txt +0 -0
  242. {mqt_core-3.2.1.dist-info → mqt_core-3.3.1.dist-info}/licenses/LICENSE.md +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mqt-core
3
- Version: 3.2.1
3
+ Version: 3.3.1
4
4
  Summary: The Backbone of the Munich Quantum Toolkit
5
5
  Keywords: MQT,quantum-computing,design-automation,decision-diagrams,zx-calculus
6
6
  Author-Email: Lukas Burgholzer <burgholzer@me.com>
@@ -15,7 +15,6 @@ Classifier: Operating System :: POSIX :: Linux
15
15
  Classifier: Programming Language :: C++
16
16
  Classifier: Programming Language :: Python
17
17
  Classifier: Programming Language :: Python :: 3 :: Only
18
- Classifier: Programming Language :: Python :: 3.9
19
18
  Classifier: Programming Language :: Python :: 3.10
20
19
  Classifier: Programming Language :: Python :: 3.11
21
20
  Classifier: Programming Language :: Python :: 3.12
@@ -29,9 +28,11 @@ Project-URL: Documentation, https://mqt.readthedocs.io/projects/core
29
28
  Project-URL: Issues, https://github.com/munich-quantum-toolkit/core/issues
30
29
  Project-URL: Discussions, https://github.com/munich-quantum-toolkit/core/discussions
31
30
  Project-URL: PyPI, https://pypi.org/project/mqt-core/
32
- Requires-Python: >=3.9
31
+ Requires-Python: >=3.10
33
32
  Provides-Extra: evaluation
34
33
  Requires-Dist: pandas[output-formatting]>=2.1.2; extra == "evaluation"
34
+ Requires-Dist: pandas[output-formatting]>=2.2.3; python_version >= "3.13" and extra == "evaluation"
35
+ Requires-Dist: pandas[output-formatting]>=2.3.3; python_version >= "3.14" and extra == "evaluation"
35
36
  Provides-Extra: qiskit
36
37
  Requires-Dist: qiskit[qasm3-import]>=1.0.0; extra == "qiskit"
37
38
  Description-Content-Type: text/markdown
@@ -47,10 +48,10 @@ Description-Content-Type: text/markdown
47
48
 
48
49
  <p align="center">
49
50
  <a href="https://mqt.readthedocs.io">
50
- <picture>
51
- <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/munich-quantum-toolkit/.github/refs/heads/main/docs/_static/logo-mqt-dark.svg" width="60%">
52
- <img src="https://raw.githubusercontent.com/munich-quantum-toolkit/.github/refs/heads/main/docs/_static/logo-mqt-light.svg" width="60%" alt="MQT Logo">
53
- </picture>
51
+ <picture>
52
+ <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/munich-quantum-toolkit/.github/refs/heads/main/docs/_static/logo-mqt-dark.svg" width="60%">
53
+ <img src="https://raw.githubusercontent.com/munich-quantum-toolkit/.github/refs/heads/main/docs/_static/logo-mqt-light.svg" width="60%" alt="MQT Logo">
54
+ </picture>
54
55
  </a>
55
56
  </p>
56
57
 
@@ -69,6 +70,7 @@ MQT Core is an open-source C++20 and Python library for quantum computing that f
69
70
  - Fully fledged intermediate representation (IR) for quantum computations.
70
71
  - A state-of-the-art decision diagram (DD) package for quantum computing.
71
72
  - A dedicated ZX-diagram package for working with the ZX-calculus.
73
+ - A QIR runtime based on the decision diagram package.
72
74
 
73
75
  If you have any questions, feel free to create a [discussion](https://github.com/munich-quantum-toolkit/core/discussions) or an [issue](https://github.com/munich-quantum-toolkit/core/issues) on [GitHub](https://github.com/munich-quantum-toolkit/core).
74
76
 
@@ -79,22 +81,40 @@ Among others, it is part of the [Munich Quantum Software Stack (MQSS)](https://w
79
81
 
80
82
  <p align="center">
81
83
  <picture>
82
- <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/munich-quantum-toolkit/.github/refs/heads/main/docs/_static/mqt-logo-banner-dark.svg" width="90%">
83
- <img src="https://raw.githubusercontent.com/munich-quantum-toolkit/.github/refs/heads/main/docs/_static/mqt-logo-banner-light.svg" width="90%" alt="MQT Partner Logos">
84
+ <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/munich-quantum-toolkit/.github/refs/heads/main/docs/_static/mqt-logo-banner-dark.svg" width="90%">
85
+ <img src="https://raw.githubusercontent.com/munich-quantum-toolkit/.github/refs/heads/main/docs/_static/mqt-logo-banner-light.svg" width="90%" alt="MQT Partner Logos">
84
86
  </picture>
85
87
  </p>
86
88
 
87
89
  Thank you to all the contributors who have helped make MQT Core a reality!
88
90
 
89
91
  <p align="center">
90
- <a href="https://github.com/munich-quantum-toolkit/core/graphs/contributors">
91
- <img src="https://contrib.rocks/image?repo=munich-quantum-toolkit/core" />
92
- </a>
92
+ <a href="https://github.com/munich-quantum-toolkit/core/graphs/contributors">
93
+ <img src="https://contrib.rocks/image?repo=munich-quantum-toolkit/core" alt="Contributors to munich-quantum-toolkit/core" />
94
+ </a>
95
+ </p>
96
+
97
+ The MQT will remain free, open-source, and permissively licensed—now and in the future.
98
+ We are firmly committed to keeping it open and actively maintained for the quantum computing community.
99
+
100
+ To support this endeavor, please consider:
101
+
102
+ - Starring and sharing our repositories: https://github.com/munich-quantum-toolkit
103
+ - Contributing code, documentation, tests, or examples via issues and pull requests
104
+ - Citing the MQT in your publications (see [Cite This](#cite-this))
105
+ - Citing our research in your publications (see [References](https://mqt.readthedocs.io/projects/core/en/latest/references.html))
106
+ - Using the MQT in research and teaching, and sharing feedback and use cases
107
+ - Sponsoring us on GitHub: https://github.com/sponsors/munich-quantum-toolkit
108
+
109
+ <p align="center">
110
+ <a href="https://github.com/sponsors/munich-quantum-toolkit">
111
+ <img width=20% src="https://img.shields.io/badge/Sponsor-white?style=for-the-badge&logo=githubsponsors&labelColor=black&color=blue" alt="Sponsor the MQT" />
112
+ </a>
93
113
  </p>
94
114
 
95
115
  ## Getting Started
96
116
 
97
- `mqt.core` is available via [PyPI](https://pypi.org/project/mqt.core/) for all major operating systems and supports Python 3.9 to 3.14.
117
+ `mqt.core` is available via [PyPI](https://pypi.org/project/mqt.core/).
98
118
 
99
119
  ```console
100
120
  (.venv) $ pip install mqt.core
@@ -117,15 +137,17 @@ print(qc)
117
137
 
118
138
  ## System Requirements
119
139
 
120
- Building (and running) is continuously tested under Linux, MacOS, and Windows using the [latest available system versions for GitHub Actions](https://github.com/actions/runner-images).
121
- However, the implementation should be compatible with any current C++ compiler supporting C++20 and a minimum CMake version of 3.24.
140
+ Building the project requires a C++ compiler with support for C++20 and CMake 3.24 or newer.
141
+ For details on how to build the project, please refer to the [documentation](https://mqt.readthedocs.io/projects/core).
142
+ Building (and running) is continuously tested under Linux, macOS, and Windows using the [latest available system versions for GitHub Actions](https://github.com/actions/runner-images).
143
+ MQT Core is compatible with all [officially supported Python versions](https://devguide.python.org/versions/).
122
144
 
123
- MQT Core relies on some external dependencies:
145
+ The project relies on some external dependencies:
124
146
 
125
- - [nlohmann/json](https://github.com/nlohmann/json): A JSON library for modern C++.
126
147
  - [boost/multiprecision](https://github.com/boostorg/multiprecision): A library for multiprecision arithmetic (used in the ZX package).
148
+ - [nlohmann/json](https://github.com/nlohmann/json): A JSON library for modern C++.
149
+ - [pybind/pybind11_json](https://github.com/pybind/pybind11_json): A library for using `nlohmann::json` with `pybind11` (only used for creating the Python bindings).
127
150
  - [google/googletest](https://github.com/google/googletest): A testing framework for C++ (only used in tests).
128
- - [pybind/pybind11_json](https://github.com/pybind/pybind11_json): Using nlohmann::json with pybind11 (only used for creating the Python bindings).
129
151
 
130
152
  CMake will automatically look for installed versions of these libraries. If it does not find them, they will be fetched automatically at configure time via the [FetchContent](https://cmake.org/cmake/help/latest/module/FetchContent.html) module (check out the documentation for more information on how to customize this behavior).
131
153
 
@@ -135,20 +157,42 @@ If you want to use the ZX library, it is recommended (although not strictly nece
135
157
 
136
158
  ## Cite This
137
159
 
138
- If you want to cite MQT Core, please use the following BibTeX entry:
160
+ Please cite the work that best fits your use case.
161
+
162
+ ### MQT Core (the tool)
163
+
164
+ When citing the software itself or results produced with it, cite the MQT Core paper:
139
165
 
140
166
  ```bibtex
141
167
  @article{burgholzer2025MQTCore,
142
- title = {{{MQT Core}}: {{The}} Backbone of the {{Munich Quantum Toolkit (MQT)}}},
143
- author = {Lukas Burgholzer and Yannick Stade and Tom Peham and Robert Wille},
144
- year = {2025},
145
- journal = {Journal of Open Source Software},
146
- publisher = {The Open Journal},
147
- volume = {10},
148
- number = {108},
149
- pages = {7478},
150
- doi = {10.21105/joss.07478},
151
- url = {https://doi.org/10.21105/joss.07478},
168
+ title = {{{MQT Core}}: {{The}} Backbone of the {{Munich Quantum Toolkit (MQT)}}},
169
+ author = {Burgholzer, Lukas and Stade, Yannick and Peham, Tom and Wille, Robert},
170
+ year = 2025,
171
+ journal = {Journal of Open Source Software},
172
+ publisher = {The Open Journal},
173
+ volume = 10,
174
+ number = 108,
175
+ pages = 7478,
176
+ doi = {10.21105/joss.07478},
177
+ url = {https://doi.org/10.21105/joss.07478}
178
+ }
179
+ ```
180
+
181
+ ### The Munich Quantum Toolkit (the project)
182
+
183
+ When discussing the overall MQT project or its ecosystem, cite the MQT Handbook:
184
+
185
+ ```bibtex
186
+ @inproceedings{mqt,
187
+ title = {The {{MQT}} Handbook: {{A}} Summary of Design Automation Tools and Software for Quantum Computing},
188
+ shorttitle = {{The MQT Handbook}},
189
+ author = {Wille, Robert and Berent, Lucas and Forster, Tobias and Kunasaikaran, Jagatheesan and Mato, Kevin and Peham, Tom and Quetschlich, Nils and Rovara, Damian and Sander, Aaron and Schmid, Ludwig and Schoenberger, Daniel and Stade, Yannick and Burgholzer, Lukas},
190
+ year = 2024,
191
+ booktitle = {IEEE International Conference on Quantum Software (QSW)},
192
+ doi = {10.1109/QSW62656.2024.00013},
193
+ eprint = {2405.17543},
194
+ eprinttype = {arxiv},
195
+ addendum = {A live version of this document is available at \url{https://mqt.readthedocs.io}}
152
196
  }
153
197
  ```
154
198
 
@@ -156,10 +200,7 @@ If you want to cite MQT Core, please use the following BibTeX entry:
156
200
 
157
201
  ## Acknowledgements
158
202
 
159
- The Munich Quantum Toolkit has been supported by the European
160
- Research Council (ERC) under the European Union's Horizon 2020 research and innovation program (grant agreement
161
- No. 101001318), the Bavarian State Ministry for Science and Arts through the Distinguished Professorship Program, as well as the
162
- Munich Quantum Valley, which is supported by the Bavarian state government with funds from the Hightech Agenda Bayern Plus.
203
+ The Munich Quantum Toolkit has been supported by the European Research Council (ERC) under the European Union's Horizon 2020 research and innovation program (grant agreement No. 101001318), the Bavarian State Ministry for Science and Arts through the Distinguished Professorship Program, as well as the Munich Quantum Valley, which is supported by the Bavarian state government with funds from the Hightech Agenda Bayern Plus.
163
204
 
164
205
  <p align="center">
165
206
  <picture>
@@ -1,21 +1,28 @@
1
- mqt/core/dd.cp314-win_arm64.pyd,sha256=SJPgVJycAyr3mRzlLxVZEPYtQew5klod87oeCz_PHmo,353280
2
- mqt/core/dd.pyi,sha256=LKocJL1n_P7Q5naSG1I-5kRDLURLFLE8DObj7UNj0_A,37807
1
+ mqt/core/dd.cp314-win_arm64.pyd,sha256=_hl-U5kmvOrvl9AU6o1ZhvzxXwLAdxkMYhXSrFX8HT4,357888
2
+ mqt/core/dd.pyi,sha256=Hx4RE4kGN4BBJvI_qMATm5UhdMJYlNtYi5q9UcWafjg,37716
3
3
  mqt/core/dd_evaluation.py,sha256=fCH9ZZdA4Qgpm-CUXJOfntvEntKqgDCjVKhYkb5evgE,13953
4
- mqt/core/ir.cp314-win_arm64.pyd,sha256=_54nk-T_ifOf44124PErECE0vSk2kdYR4HbMgInh2LA,620032
4
+ mqt/core/fomac.cp314-win_arm64.pyd,sha256=r1NMR3ZTLRLm8ULoTXCLU_UeVpu-dVk2HTZMAda18ik,215040
5
+ mqt/core/fomac.pyi,sha256=N4cD0hnm09vK4hCPVPP7ytNY9QsWK-6uxNAFQ_j_OpU,6357
6
+ mqt/core/ir.cp314-win_arm64.pyd,sha256=g3ciZmDJ2hy4MckONnFiPIshZYpu5Gaw92fpzbl8tkw,635904
7
+ mqt/core/nlohmann_json.natvis,sha256=664Fu2cA88cM8vk1MxO9EgaZE4Iej9qruOmdu7eYybs,20838
5
8
  mqt/core/py.typed,sha256=husfEbE4Pj90ywT42RX6LTRKsGA05aTLQRjjxVotcH4,95
6
- mqt/core/_commands.py,sha256=6QK6KoYMucIyxwFQE1aDAA2FWPuNWj3gCO76PzaGj0A,1888
7
- mqt/core/_version.py,sha256=TQQ6honw-pG8S22_5DauGGXBpIxYKtjqoYxhrQ-hp8A,532
9
+ mqt/core/_commands.py,sha256=LeQQe7on3dqHaAoVYKdtd7O1Qsj8JjBcCeHXqUNDfu0,1898
10
+ mqt/core/_version.py,sha256=xAhjq1dIc0ldSZ4wXO-_JuHPSKWYyyzI_G3Ibwl_6Qc,746
8
11
  mqt/core/_version.pyi,sha256=NRxzqx_-YD6DsAcy2DQ6DmBXMlWGo-9_2sZjXv80-xM,395
9
- mqt/core/__init__.py,sha256=0fyxnrRjr82zz05gGHLDS9KB92S1dt3gnZj59ar4eNM,3113
12
+ mqt/core/__init__.py,sha256=AWllAQ4ov2s5-46oRcFxS5y5isK4WhbBr4isY6bIvo0,3113
10
13
  mqt/core/__main__.py,sha256=afcpODVbIMV2W_Q26VhQn-e-xHCl3PyUSHV_aOxTXCQ,1658
11
- mqt/core/bin/mqt-core-algorithms.dll,sha256=8CPLduV1cBQf_HcFpDyQOT1yIdtUBWNwLwD-E5wsi9g,101888
12
- mqt/core/bin/mqt-core-circuit-optimizer.dll,sha256=9yOLIHBSjDEsdNuep5ApjYTrRDT3oTvYJvcQVluGt_8,166912
13
- mqt/core/bin/mqt-core-dd.dll,sha256=NRRz0aeMnVvUIJRFJBA07bt75TZLPhjaL5XYWbgT0pw,513536
14
- mqt/core/bin/mqt-core-ds.dll,sha256=rYDpJmb0b-AwO0EQ-WFQ8h_ITC-0-AAyXLUFCwtrSII,73216
15
- mqt/core/bin/mqt-core-ir.dll,sha256=yZWyuDKLqx1NguVB_-srVbun-KPQosye9lhB1u9YzIo,446464
16
- mqt/core/bin/mqt-core-na.dll,sha256=Ye0vFkIf9DYVD76W4NmWct32b5V5RDYA7WmUxeU_VtM,63488
17
- mqt/core/bin/mqt-core-qasm.dll,sha256=rpKGPu6gjyoMZfGTNvfs4lzo-DTJ-9dcN8v30_Qx8jk,613376
18
- mqt/core/bin/mqt-core-zx.dll,sha256=H0HV0J3YKX-j4mFVOZ4xoOP9uiIcGkwLWEUImc3edag,229376
14
+ mqt/core/bin/mqt-core-algorithms.dll,sha256=fZv31eyBSZQABwBRdq9RVeopaTAcNKqdfBHo5JtXYcA,100864
15
+ mqt/core/bin/mqt-core-circuit-optimizer.dll,sha256=cBUUDC_t2B3KuzP2mww1uRphOnpluupisai7497ZmQA,180736
16
+ mqt/core/bin/mqt-core-dd.dll,sha256=w3UshUtnmaf3SnMPZUuNvkiwFZ3ctci9b_0ha44s9lA,513536
17
+ mqt/core/bin/mqt-core-ds.dll,sha256=GqrLhAWZtPOA3n49VJC3tiT5Z05-OVKB6F9Mg923dh4,73216
18
+ mqt/core/bin/mqt-core-fomac.dll,sha256=NtXQvE9k7DKFMLN8kR9mgr68SLCzv5Z4txYljm20N2E,83968
19
+ mqt/core/bin/mqt-core-ir.dll,sha256=cE4bwAa6AdVfUTMJ3iRNYV5AbU4zc5Nt-8A9nJkfUWo,450560
20
+ mqt/core/bin/mqt-core-na-fomac.dll,sha256=Lw4B_D6dQRR7atqUwDBFEmVbqTlrmOpFrbBqCkWPjSU,350720
21
+ mqt/core/bin/mqt-core-na.dll,sha256=ZOGeg0x7OZYnalSpF6dIz5Ml3rzDeUSp-UsUpNHADzw,63488
22
+ mqt/core/bin/mqt-core-qasm.dll,sha256=1Yt-CoWu70aE-F0dn1Xq1qzIg4pnxJhLX-RqyBINUJ8,612352
23
+ mqt/core/bin/mqt-core-qdmi-driver.dll,sha256=aTTBgkQyjBaQ7hf3r4RIufBzCCRE7YKqBYpt4NcBAZc,45568
24
+ mqt/core/bin/mqt-core-qdmi-na-device.dll,sha256=I-4m0LE-naTxiqCtEEnEG3gdVlmZ6xCofC-1aEmdg2Q,108544
25
+ mqt/core/bin/mqt-core-zx.dll,sha256=7yx42RIu-EkQqiM25wFGbbQDLt9rznpHLOp5X3jVX6g,229376
19
26
  mqt/core/include/mqt-core/algorithms/BernsteinVazirani.hpp,sha256=XyXVCqRdheDdBKDC5fM4QRn7LkjDX8XHf5uCQ9k1Gxk,1213
20
27
  mqt/core/include/mqt-core/algorithms/GHZState.hpp,sha256=AAFJmGyI7Q8fYI34ZWsAwlZmJV_OwYRHdTUs-jtVufk,425
21
28
  mqt/core/include/mqt-core/algorithms/Grover.hpp,sha256=3doZWNpMcmGuybkV6BtkOF5l3FN3IMH_kphxz_Yb4qc,965
@@ -207,7 +214,7 @@ mqt/core/include/mqt-core/boost/multiprecision/traits/is_variable_precision.hpp,
207
214
  mqt/core/include/mqt-core/boost/multiprecision/traits/max_digits10.hpp,sha256=BoWbvcVeXsfzKWd_ucquMaSQxSMneWZXx-tNKz831Ms,2896
208
215
  mqt/core/include/mqt-core/boost/multiprecision/traits/std_integer_traits.hpp,sha256=ZeAbnYoRIdNnprh3RkAzy-w6P5_HZa1p7V5c3_U5A00,2563
209
216
  mqt/core/include/mqt-core/boost/multiprecision/traits/transcendental_reduction_type.hpp,sha256=iM8PK72TVZ2tBSZCch27L7HbY_M6CQ7vPHnk_2slppo,621
210
- mqt/core/include/mqt-core/circuit_optimizer/CircuitOptimizer.hpp,sha256=-tsSd86O-_zj9DyoX_3yPiiLCP6FebYu8sz3Ex2nghc,3888
217
+ mqt/core/include/mqt-core/circuit_optimizer/CircuitOptimizer.hpp,sha256=V1vfFip76uv0CV3ulQl6wf6wjx3tCxwoKgwRncwMRyU,4495
211
218
  mqt/core/include/mqt-core/circuit_optimizer/mqt_core_circuit_optimizer_export.h,sha256=ImtFedS9gjLSs7OPTNNDE00XO16vCoDR433d2cl7A3k,1519
212
219
  mqt/core/include/mqt-core/datastructures/DirectedAcyclicGraph.hpp,sha256=9QioHjX5zcDJf4caousJTGewgRUpWASg3IA-QlQaIyQ,3677
213
220
  mqt/core/include/mqt-core/datastructures/DirectedGraph.hpp,sha256=uQqpkzHw3wf_GIwPdskgNVEd8tVGLukvAofbMy4Y2J4,5233
@@ -217,7 +224,7 @@ mqt/core/include/mqt-core/datastructures/mqt_core_ds_export.h,sha256=wEJFgO0uDp5
217
224
  mqt/core/include/mqt-core/datastructures/SymmetricMatrix.hpp,sha256=SnXxOzIFwnGylYxDRfXXQu2lf8Bho4Cqu1HmHjTsa4A,1368
218
225
  mqt/core/include/mqt-core/datastructures/UndirectedGraph.hpp,sha256=1eLdon-dAvsZllRMcszz0MyZiADkdQ2msF2EKwlghww,7939
219
226
  mqt/core/include/mqt-core/dd/Approximation.hpp,sha256=O3HoT6WQfWJmOxhkBrkb7B6UrQDJqyFk6R-TefgWpCk,1388
220
- mqt/core/include/mqt-core/dd/CachedEdge.hpp,sha256=fA2pQt8skI_I8paEnNXq4Qh7mSBfyPs9DBrKl8WHgUQ,5694
227
+ mqt/core/include/mqt-core/dd/CachedEdge.hpp,sha256=mc6aAsrzrbCGb1f6lKdlToZon0uUKJWoUQBNfZd8yF0,6007
221
228
  mqt/core/include/mqt-core/dd/Complex.hpp,sha256=Bu6JT8A7SKBEhVZFJA99OOs5xEUfGzjHIslE0Xt7gRg,5487
222
229
  mqt/core/include/mqt-core/dd/ComplexNumbers.hpp,sha256=wSPYwxiHgua-govC8B7qHIc3AuEYA8A79Qe6-eeSezI,4232
223
230
  mqt/core/include/mqt-core/dd/ComplexValue.hpp,sha256=fQuq_zDjyPlLBwXZ-VT6LABYSZc1DwSWXtF7w2SYNfk,6792
@@ -234,7 +241,7 @@ mqt/core/include/mqt-core/dd/MemoryManager.hpp,sha256=xpsWSxivEz8GRo36ePMy3_FmHe
234
241
  mqt/core/include/mqt-core/dd/mqt_core_dd_export.h,sha256=mWZABiNpVg1zXtu0Qk9HPQK1ZnidNnB_tI6WLNS9Zi4,1159
235
242
  mqt/core/include/mqt-core/dd/Node.hpp,sha256=o2Osql_1IIwj-Cx9joEDEKVc4YIpbXOpN8_CDsYIPM4,7581
236
243
  mqt/core/include/mqt-core/dd/NoiseFunctionality.hpp,sha256=ySDc69kW-rEJwGWms4wHUJUcX8CC-WPVb4utHit6pqo,4865
237
- mqt/core/include/mqt-core/dd/Operations.hpp,sha256=_LwTBONmqiFEKkCPFnaa9XVW8uyShoUFD2-jJqHIRw8,11255
244
+ mqt/core/include/mqt-core/dd/Operations.hpp,sha256=DgI4ZaUiDNuh_Fk3UcyedC4RfUua3o5XB64JIsnDTeQ,11179
238
245
  mqt/core/include/mqt-core/dd/Package.hpp,sha256=uAvz69vqowDQnkDDSwUoW_5s6KvaPeKexJJVOs1ayng,74151
239
246
  mqt/core/include/mqt-core/dd/Package_fwd.hpp,sha256=tZXPFjsIsIxzEV7s9kwip97Q54IlC6ffGkNMR1b3CGE,454
240
247
  mqt/core/include/mqt-core/dd/RealNumber.hpp,sha256=k4vUoPyWn2js2VtED4gU8Y6NNSHnPMJuuwfs4ktYPHc,9468
@@ -249,27 +256,34 @@ mqt/core/include/mqt-core/dd/statistics/PackageStatistics.hpp,sha256=4hFELgAR1ZM
249
256
  mqt/core/include/mqt-core/dd/statistics/Statistics.hpp,sha256=NdF2Cov_VoXEdjIkqo0Cuj-q5xUajGm0iaoCqqs-u6w,1267
250
257
  mqt/core/include/mqt-core/dd/statistics/TableStatistics.hpp,sha256=0fOOahUCH2CWtfB2It-ccEBjR-cxfRUx5F-_YBHXWD0,2326
251
258
  mqt/core/include/mqt-core/dd/statistics/UniqueTableStatistics.hpp,sha256=71Nyf7NKFHzfGW4MXWD2AAZK-hrK65KsGveCxYlrmig,789
259
+ mqt/core/include/mqt-core/fomac/FoMaC.hpp,sha256=RtkIarl87ju_ZsQiPPLJjQeuj_Gc0VdQBZKIVHmjgLk,23027
252
260
  mqt/core/include/mqt-core/ir/Definitions.hpp,sha256=4DgMwdgzBYRCWNOG4V4c4Buj7OuieRantpl5R7GZnDs,3449
253
261
  mqt/core/include/mqt-core/ir/mqt_core_ir_export.h,sha256=ccu1MlbKglOAx8t_EcnlUl7bdDju03nyeMfznojd9Ls,1159
254
262
  mqt/core/include/mqt-core/ir/Permutation.hpp,sha256=SaPP_5t1iTybv5bTuwR7dR6GnbJz17K4uyOL6zLaFKg,6822
255
- mqt/core/include/mqt-core/ir/QuantumComputation.hpp,sha256=f0jYqzUFVKqC_fCZvPeqMuqgOBG-_uHeoimBafvRN4o,25272
263
+ mqt/core/include/mqt-core/ir/QuantumComputation.hpp,sha256=Igp2rTf9qYqRBBjoyQaagkrX946uwFp-XSoZJ1U7uZ0,25255
256
264
  mqt/core/include/mqt-core/ir/Register.hpp,sha256=BtzXUyM_HnfrUf4l4EyM-RcIKScaXLOjUwbJHoDVsG0,3869
257
265
  mqt/core/include/mqt-core/ir/operations/AodOperation.hpp,sha256=1K0oycjyKGtW9lgbqv4yXPYqo0m8T6_8J0MWO9zCZKU,3015
258
- mqt/core/include/mqt-core/ir/operations/ClassicControlledOperation.hpp,sha256=XNCwykUjpmOK7GU_DvMbzKeEi45DhGvj4l6zI4sRvs4,4721
259
- mqt/core/include/mqt-core/ir/operations/CompoundOperation.hpp,sha256=ZujQKQX4pd69jbYNbr8BHHLktwHrw-Xlrhicp9pI5XY,7533
266
+ mqt/core/include/mqt-core/ir/operations/CompoundOperation.hpp,sha256=3kMViKQOEhkVi5Saj7lbPEpQJK0c75e0puxcfsSGEdM,7586
260
267
  mqt/core/include/mqt-core/ir/operations/Control.hpp,sha256=6m6HTr0nwOE4sgpeYLvpccGRqyUpxNkswZo3M0wcVcM,4249
261
268
  mqt/core/include/mqt-core/ir/operations/Expression.hpp,sha256=gO-waNndEgvyAOvDRwYT_QJJ6FIc8RvYnUANhd1Lo6k,26438
269
+ mqt/core/include/mqt-core/ir/operations/IfElseOperation.hpp,sha256=y857aFYfxauZX6cOE4Y8uap2htZRq8zIS7U_Dh9KE34,5506
262
270
  mqt/core/include/mqt-core/ir/operations/NonUnitaryOperation.hpp,sha256=4UTzigpbVn-ygLsawT_cO9U4he7OzAB8qa3Qn8CNHnQ,3939
263
- mqt/core/include/mqt-core/ir/operations/Operation.hpp,sha256=83Fdexd_fmYEdRwVfY0T2LliCcRcp-qDJl8jYwNS2y8,7900
264
- mqt/core/include/mqt-core/ir/operations/OpType.hpp,sha256=fJ-7romCkIbnM-GprVBoVja3HWzyrUm44lmMZHkOxKI,2316
265
- mqt/core/include/mqt-core/ir/operations/OpType.inc,sha256=6LFm0plv_J-bQ5Xa9P8MJCKcfoKE6a4MNM4KxbP6SNw,2632
266
- mqt/core/include/mqt-core/ir/operations/StandardOperation.hpp,sha256=pV5gCR59CTkVCyrwYqKKFfCU8tMBMITOeCN1OcpGuD4,4500
271
+ mqt/core/include/mqt-core/ir/operations/Operation.hpp,sha256=R7cUspmaJ3C01hOfF6QsqvaW3kUgf1R9SrWLafVtY9w,7958
272
+ mqt/core/include/mqt-core/ir/operations/OpType.hpp,sha256=iP_C7754W3wPd9TCWuW2QRVrwLYahbP2ugu-dnvQj7M,2383
273
+ mqt/core/include/mqt-core/ir/operations/OpType.inc,sha256=nof5R44iOqmvmFORiVbw4hzZ84Lcw-YYqyuNQ7yrFa0,2601
274
+ mqt/core/include/mqt-core/ir/operations/StandardOperation.hpp,sha256=VsGfNuqhXVOmtaUrQUCudo-KSqKzSI2wja6D7CW46s0,4553
267
275
  mqt/core/include/mqt-core/ir/operations/SymbolicOperation.hpp,sha256=OGPK_QWN5wrH1EqkNvGXInmexfJtCoHi8qjjbu6S54I,5162
276
+ mqt/core/include/mqt-core/mqt_na_qdmi/device.h,sha256=0flYIUOrT0PJcAIp5hfWurWksUr4WYFzhOsH8U7d9FA,31144
277
+ mqt/core/include/mqt-core/mqt_na_qdmi/types.h,sha256=fr7bTlhxv-1rS7HpuvwvWSeR48EofyYAXpoAAjWv1qA,2993
268
278
  mqt/core/include/mqt-core/na/mqt_core_na_export.h,sha256=nAFQP_S88hYF5jpGXn0S-ZRuKpeKBuu7bq8feEkyzk0,1159
269
279
  mqt/core/include/mqt-core/na/NAComputation.hpp,sha256=cVoUiUdyTYtCzKO4WJ23zM5r75jtWOsvH_rJwYY4t_c,7364
280
+ mqt/core/include/mqt-core/na/device/Device.hpp,sha256=txgqgZEyM7AW8xqtzL6kLVahOP6Vo94MgzSoEy_AhAo,15914
281
+ mqt/core/include/mqt-core/na/device/DeviceMemberInitializers.hpp,sha256=c33bZ09FdNM4hQfqfa62V1iy5-6s_tiI1WVKkm8FAwM,49799
282
+ mqt/core/include/mqt-core/na/device/Generator.hpp,sha256=BUwjhlH1e5QIZypRqrIEzPO1nXf4-amGoJRFLsExHqM,18310
270
283
  mqt/core/include/mqt-core/na/entities/Atom.hpp,sha256=ThsQwxwgHdQx_NUkMdqdgHOHQxrjvH2Sg_1YttHOzsQ,1873
271
284
  mqt/core/include/mqt-core/na/entities/Location.hpp,sha256=s5mBOm3sKRs7QLcL0ttmMjUFcZ2g4d04sJkPVN0yrV8,5429
272
285
  mqt/core/include/mqt-core/na/entities/Zone.hpp,sha256=RQm0iQVBVPOHFUEqMYMdHgIkZsx_hWBgrp--mAldzNk,2750
286
+ mqt/core/include/mqt-core/na/fomac/Device.hpp,sha256=-VwvSbPTzJnMYACg57gjyjuNOfP5pSbsoaFTHKNB_9o,5539
273
287
  mqt/core/include/mqt-core/na/operations/GlobalCZOp.hpp,sha256=J91BbMPQxZycD7lKMJfaRWUpDvQ0luOickMNRzAJs90,1014
274
288
  mqt/core/include/mqt-core/na/operations/GlobalOp.hpp,sha256=pk4W7h_yE0zW13m8JmF8kDnLDxanrAJIZLBwemBPZfU,1702
275
289
  mqt/core/include/mqt-core/na/operations/GlobalRYOp.hpp,sha256=bHT_1En7C0Ssd3zDVNBxarkP-Z0VBJZZsADpibgUoIc,1224
@@ -298,6 +312,7 @@ mqt/core/include/mqt-core/qasm3/Types_fwd.hpp,sha256=1BJGGBmi5fYfuxVnxwFsFT5hH2r
298
312
  mqt/core/include/mqt-core/qasm3/passes/CompilerPass.hpp,sha256=dnKWaBbiNDYibYFGfwfk0FCCoQK76XleuPx90DRhruc,447
299
313
  mqt/core/include/mqt-core/qasm3/passes/ConstEvalPass.hpp,sha256=3rOIpdwQxS_n2371-MZcBJlrm9Sy6qQ61NcRTH5Y0nQ,3536
300
314
  mqt/core/include/mqt-core/qasm3/passes/TypeCheckPass.hpp,sha256=0_bAr0ikjLp-VT_OPnFVt7NqsqxrTiG5kDpJmoLW0xg,4144
315
+ mqt/core/include/mqt-core/qdmi/Driver.hpp,sha256=iWdvyiwVB1Loamb17jGISQZlfMEZKhRp4fhqxWK771U,15378
301
316
  mqt/core/include/mqt-core/zx/FunctionalityConstruction.hpp,sha256=WJSz0LPsZ4A1-0nFMnF3n3zWWRXwHu_y-bTy-yJ7pqg,5387
302
317
  mqt/core/include/mqt-core/zx/mqt_core_zx_export.h,sha256=QheSeAo1HTSI4wA7_eOjR8V1PGOKpbC20BzXMw2SJK0,1159
303
318
  mqt/core/include/mqt-core/zx/Rational.hpp,sha256=yMrp5SCaUwqmFHQHSPGxbG3uJtBboc74ykx1_ybce5k,9335
@@ -306,38 +321,217 @@ mqt/core/include/mqt-core/zx/Simplify.hpp,sha256=LTCEwAZgw5HSSSga3kjAEmIHE_fQqeC
306
321
  mqt/core/include/mqt-core/zx/Utils.hpp,sha256=daakVxoqPgaPG5Y48BKXplXVCEKce3isLzUHWSBrgmA,6632
307
322
  mqt/core/include/mqt-core/zx/ZXDefinitions.hpp,sha256=fNf_20tI-6uCuEIHtWOzGFuomlmrC2na5n_RWC4w1hc,2367
308
323
  mqt/core/include/mqt-core/zx/ZXDiagram.hpp,sha256=QDIyjj9UNQ0dK3RVw9q4ZHczyYCc2nRz3XPWvTfa5nw,14651
309
- mqt/core/ir/operations.pyi,sha256=fpbUBq6vbQFmL6mVvZnlH3ZQ8zTl_2fY-Su5ZgntJKA,27097
324
+ mqt/core/include/nlohmann/adl_serializer.hpp,sha256=gHQrAIHgrFCUrU16NUnpabAEu37YaAeRGoF3yENwEmI,2281
325
+ mqt/core/include/nlohmann/byte_container_with_subtype.hpp,sha256=K3WgUdL4L9lfYTxwRyuFooHQhfGXN5HBEYJECZvziUI,3535
326
+ mqt/core/include/nlohmann/json.hpp,sha256=iNfrQrGVmcq0iFZXbdTqUlON9yrXxXIAxQ3pi9okZFg,201924
327
+ mqt/core/include/nlohmann/json_fwd.hpp,sha256=h3eoeMIKQS3QTIARyHw9ctdOSKTdpeUveUjibdIWiTE,2543
328
+ mqt/core/include/nlohmann/ordered_map.hpp,sha256=LU4tn25qDC0q2ty2INofSVhfpOVOVM-ha20g4B2FfWE,11686
329
+ mqt/core/include/nlohmann/detail/abi_macros.hpp,sha256=zrtUQfHOhRRE9Hp9jqBEYznuSZ34MhXr2HPINHoZG9c,4121
330
+ mqt/core/include/nlohmann/detail/exceptions.hpp,sha256=XJsh4KE6wLq43qZ2uYBNc539Ktwk8Db5erJD73Diquc,10590
331
+ mqt/core/include/nlohmann/detail/hash.hpp,sha256=oCWAcoHF2S_f3cyZOysqllgUZDXMELADcjsTBphEXIA,4018
332
+ mqt/core/include/nlohmann/detail/json_custom_base_class.hpp,sha256=5iKRCGiwGboJRgyWpgksEBjtUB80zOTtYzZBQAwtJQA,1180
333
+ mqt/core/include/nlohmann/detail/json_pointer.hpp,sha256=nFtUpFXpbGN4jBV9kUtwzeaj827x5d8Df0_Be7kvI10,37199
334
+ mqt/core/include/nlohmann/detail/json_ref.hpp,sha256=XRM5RdCFmsqoLFDBoESx4fgGwKOBB-riS_B_9ZRPweM,1813
335
+ mqt/core/include/nlohmann/detail/macro_scope.hpp,sha256=dgErhg3Hbnwo7-rWExHViFlkF_W0dvwg92KxrYGFiuA,51847
336
+ mqt/core/include/nlohmann/detail/macro_unscope.hpp,sha256=Ymt-ECkKK7VYY0uLv7xRGLXOaWFRtbyHQYFCxXi9UB4,1281
337
+ mqt/core/include/nlohmann/detail/string_concat.hpp,sha256=-zD7UMMlobVhCmKpBhoZZrToUN2WRjXBrRxMnaSPfao,5953
338
+ mqt/core/include/nlohmann/detail/string_escape.hpp,sha256=yxKw5ZA7HskKqpakpx4M9xBkQMqc7c_2SVZ30B8kRzM,2170
339
+ mqt/core/include/nlohmann/detail/string_utils.hpp,sha256=heL73-B_GkS5DVQi7huVHRBT8y5CncSu42J0-wP9k1Q,840
340
+ mqt/core/include/nlohmann/detail/value_t.hpp,sha256=Z-17Fk20hVa7SuQJpkVAH6ukWQgVcPm5-f-Xf9MsYRQ,4328
341
+ mqt/core/include/nlohmann/detail/conversions/from_json.hpp,sha256=XyJ9JDwNXA1nxMcrK1f7in1QBTqy1mf7aliAsUgfyfE,21436
342
+ mqt/core/include/nlohmann/detail/conversions/to_chars.hpp,sha256=ILm8RGnuSQvGJtjbze4GCklCkkc99L287P4vIUXtVi0,38578
343
+ mqt/core/include/nlohmann/detail/conversions/to_json.hpp,sha256=RkKcG4fqcZYv-2jcsKfngRo-v18QK88xhojkj_H2tz4,17196
344
+ mqt/core/include/nlohmann/detail/input/binary_reader.hpp,sha256=nmF4JTF5EDUvKiAlu4dJiYKH-jAD6BziKle1LFNdDqs,104932
345
+ mqt/core/include/nlohmann/detail/input/input_adapters.hpp,sha256=Afp6-P3RunscEgib-SeD9w0JqT23Vk5N9wVE_IUwTeY,19635
346
+ mqt/core/include/nlohmann/detail/input/json_sax.hpp,sha256=Dtb9sO-R8WPMoxK3_9bghC8S4bg0AgSrLQwFJ34NHxg,31133
347
+ mqt/core/include/nlohmann/detail/input/lexer.hpp,sha256=qLc-VSQnMTdcCIEz86NVr3sbuC1rlTFnjLIFYNNzPB0,55523
348
+ mqt/core/include/nlohmann/detail/input/parser.hpp,sha256=tKdilnsXTeDEOJa0ZeSnyMksOoY29mneveyDYFD3kSo,19712
349
+ mqt/core/include/nlohmann/detail/input/position_t.hpp,sha256=AjkDeHK2IqXz9C-htFPSAfl30hgpstxKGaviWUUV6to,960
350
+ mqt/core/include/nlohmann/detail/iterators/internal_iterator.hpp,sha256=vwFWI1GMWqtHYtmk0hrw6Fomzcs_xuaeRkyFdaO4ero,1073
351
+ mqt/core/include/nlohmann/detail/iterators/iteration_proxy.hpp,sha256=PFYvF4Ph_JR27VPYBUvFAwnKpCXZk5lqnd-RlPshKcw,8073
352
+ mqt/core/include/nlohmann/detail/iterators/iterator_traits.hpp,sha256=lg0f7758siApKwfk7AR7-po8y9dTra9i5dWD90bnHkc,1751
353
+ mqt/core/include/nlohmann/detail/iterators/iter_impl.hpp,sha256=xvBmTEllKHFUUFg33eSuE-diWXh0Xoh2lR_JDaYbUGg,24869
354
+ mqt/core/include/nlohmann/detail/iterators/json_reverse_iterator.hpp,sha256=bwcvsrnhUa2WRcsDqaojIxSAv0R-U7Lg7LQfRft1A-E,3863
355
+ mqt/core/include/nlohmann/detail/iterators/primitive_iterator.hpp,sha256=QKAxd9UZujeOWb7QpTqb6AIv09DucBQJeBwOhW1b9RA,3229
356
+ mqt/core/include/nlohmann/detail/meta/cpp_future.hpp,sha256=ceYGxYYXT_h19ZlqALxuhKSeCRnq_W-zjHy5KN_fV5U,5173
357
+ mqt/core/include/nlohmann/detail/meta/detected.hpp,sha256=0USsKra7kr41v9p-7FYLnQMHYOQzC3-VGirKY0aUiKE,2111
358
+ mqt/core/include/nlohmann/detail/meta/identity_tag.hpp,sha256=N_94iHnUsU_6Lnm9x1tHDSwspeutr-9kkxL2U0VdRfo,528
359
+ mqt/core/include/nlohmann/detail/meta/is_sax.hpp,sha256=5gOYsoJ2c3R0fbIKsGEBgExzRe6gdhoxOimL-HuRP5E,6962
360
+ mqt/core/include/nlohmann/detail/meta/std_fs.hpp,sha256=JXcW8JWOn9bB3D8DNXFtd5VQNTxYvJKejdoceb0zZwE,791
361
+ mqt/core/include/nlohmann/detail/meta/type_traits.hpp,sha256=1dqWZ5bAifqJy6VHQwn9ISSwg9ma3xeZEISmpTL99V0,29415
362
+ mqt/core/include/nlohmann/detail/meta/void_t.hpp,sha256=w0DnsUhUOwq_1xndvDdZ4jwv7_xjZWE2oV_YC5jKi_g,599
363
+ mqt/core/include/nlohmann/detail/meta/call_std/begin.hpp,sha256=Rim1R6prZinCZrG0dPV2y95c6JjJZQLIKKctmSErnzQ,455
364
+ mqt/core/include/nlohmann/detail/meta/call_std/end.hpp,sha256=4J3YDyJj_xktYLrRm9vcVAKGbQsMjK65wnWbJrqGSjk,453
365
+ mqt/core/include/nlohmann/detail/output/binary_writer.hpp,sha256=zfViZdFLgFBXlt-5TXmJaiJuiIjk9zD_bpLDGiuJHNE,71657
366
+ mqt/core/include/nlohmann/detail/output/output_adapters.hpp,sha256=MyLc6PY-aZMIBr2GkcLNns6KdrVLNPYXZBMpxEVZu7U,4069
367
+ mqt/core/include/nlohmann/detail/output/serializer.hpp,sha256=TAeay49pNsT3h_1XBqUsd6F1HdNHh6ghcFhFaY7IVA4,40155
368
+ mqt/core/include/nlohmann/thirdparty/hedley/hedley.hpp,sha256=FUezZ4lfi-n4KDriH1gxgttXKtmQI2IgACtjKhUjhxI,86072
369
+ mqt/core/include/nlohmann/thirdparty/hedley/hedley_undef.hpp,sha256=3fBnhMqUSLSJnblqQJ7By8ZaD2gtuclmwBHwC3eudcQ,5502
370
+ mqt/core/include/qdmi/qdmi/client.h,sha256=dkewooJDt4qODjusTMZiY92QMDbdXYDFssH-3Z7P5yk,45304
371
+ mqt/core/include/qdmi/qdmi/constants.h,sha256=n2ZM9BOkT4qZOaGP4qny7XAZpTBuOTShhrmh_gf1Vwo,53812
372
+ mqt/core/include/qdmi/qdmi/device.h,sha256=g9AYYLQarRVNjdibIuWP5b6Zexxld3vetIqhjtfRs0k,30626
373
+ mqt/core/include/qdmi/qdmi/types.h,sha256=AISGZ9tVpHcvFA0U__JzAjGr86yefTQzBLQeQ8UNCh0,2951
374
+ mqt/core/include/spdlog/async.h,sha256=PdqrpX0vdX1ssJVo_hgjlJ5FQm1z9rrrTKjYov54Ehs,4012
375
+ mqt/core/include/spdlog/async_logger-inl.h,sha256=cr2dkZpUmRHzqjYgRyzlXnCTWsXlrrohoLxAiHglz18,2821
376
+ mqt/core/include/spdlog/async_logger.h,sha256=a7hSjDMCDmKzgOweMFRJHa7MbhOXLT-bNLZMy_1Ay1M,2560
377
+ mqt/core/include/spdlog/common-inl.h,sha256=yMfbc2w_thzNhLH11fnHSKHj2_53qYa7gg_P4g2jJ1E,2050
378
+ mqt/core/include/spdlog/common.h,sha256=Yr3758nWaDZZD4n7EWuq-HUTwg4Cjg9i26pxR5HSniY,13053
379
+ mqt/core/include/spdlog/formatter.h,sha256=ITYxYoJ03Gwm_MmjvtNqOpqD7epea58Ce66ljKnF7_M,463
380
+ mqt/core/include/spdlog/fwd.h,sha256=JG0nVPt33Ny37UviMolEZZ_RVFme4J34Zdtc2zPL40k,305
381
+ mqt/core/include/spdlog/logger-inl.h,sha256=K21sEdzkvUzOtOckxv_mpQjzrpz_i0RDiukkOMPDVHA,6725
382
+ mqt/core/include/spdlog/logger.h,sha256=spjvP52upn-UZ4Gmtz7sJnuIkZHQY5Kzi8YCKY-G6KA,13412
383
+ mqt/core/include/spdlog/mdc.h,sha256=hndrM2e9cuJqYw5Y2CC28GXjszdmiCITn8wXNkatQ8A,1497
384
+ mqt/core/include/spdlog/pattern_formatter-inl.h,sha256=F1JpjONNbY38a1fYxhgePrKF2WfsSV00H3yKCfqNwrY,46719
385
+ mqt/core/include/spdlog/pattern_formatter.h,sha256=M8CLORj3GC3xXW8bqz-fk_wnHBeMLLK6ummjDgrW6iM,3758
386
+ mqt/core/include/spdlog/spdlog-inl.h,sha256=A2qw7T7BImlzvJz1KAHsJp_JX2Pc-KB0CT2_WCp0rpQ,3268
387
+ mqt/core/include/spdlog/spdlog.h,sha256=ztRddiUyhzmjNWPTcryJf37AsECjFeO7qEA6rJft-Q0,12024
388
+ mqt/core/include/spdlog/stopwatch.h,sha256=YPOq7ZMxhSYa5gPMWJzTnr-T73gyFUiHHUaftWaQPEQ,1865
389
+ mqt/core/include/spdlog/tweakme.h,sha256=jmQd8ABWAJChGtsE7_PxoY6BT2648qmpofIsDcxXL4I,6610
390
+ mqt/core/include/spdlog/version.h,sha256=kbyvrYIx1pzsvQXp0qjw08w5pK1GNwP88AG2hqL8Uqw,417
391
+ mqt/core/include/spdlog/cfg/argv.h,sha256=b5qkBkf9oI4q13ZZintd4dFZbsmnNRLJDGlQT240ei0,1219
392
+ mqt/core/include/spdlog/cfg/env.h,sha256=0q_RU_6KGygm_rYOxi6kKBHRyghUcf2iONAC_t9bsbw,1007
393
+ mqt/core/include/spdlog/cfg/helpers-inl.h,sha256=Rrl2j0UhqB5kI4JbwTHUBW_xhF5jUCpKhm4NqsVViZ4,3170
394
+ mqt/core/include/spdlog/cfg/helpers.h,sha256=NZtBdaRkrkh8LkjFW-mr_P6fEFmbmUENXVXfat59WI4,718
395
+ mqt/core/include/spdlog/details/backtracer-inl.h,sha256=MIkdPHUVTPJ4rDDbzlhL-ija4XwPk0GMNjSDx-nclDE,2004
396
+ mqt/core/include/spdlog/details/backtracer.h,sha256=4Nb19y1ZNvD932gbWQ6H7ogKLqQO1EVRuP31nghooeU,1165
397
+ mqt/core/include/spdlog/details/circular_q.h,sha256=C8QCXIFCUCP01YcR1qpiMaVe5ga7H8iPT7PmVegH4mU,3377
398
+ mqt/core/include/spdlog/details/console_globals.h,sha256=Pc7XPcK8XqzGeO7DSvZFj5EHQMiUn9G8hEmAjRNFRno,603
399
+ mqt/core/include/spdlog/details/file_helper-inl.h,sha256=gNn0MIkeDCggdnnnBAUW1FGWkq1UFxdTgcf-InhK0MU,4709
400
+ mqt/core/include/spdlog/details/file_helper.h,sha256=sJqaZUPMVwPQzbBU4VNzodZhkTj14HakU_WDCh4iWO0,1758
401
+ mqt/core/include/spdlog/details/fmt_helper.h,sha256=1ms-wGF6Q5ynpP1mEEbVvlS-7YnG-uKEnU1Gw_KO-Kk,4471
402
+ mqt/core/include/spdlog/details/log_msg-inl.h,sha256=g-bIN6TzCUZx1nRag1xxjFwLkiKIvjcaGUKQk6uFYnI,1396
403
+ mqt/core/include/spdlog/details/log_msg.h,sha256=E6eLjMCotx_WpJYzeS-YRTrriETVJdELxVsiCJoSAoE,1204
404
+ mqt/core/include/spdlog/details/log_msg_buffer-inl.h,sha256=xMpFoEAbF96fV-plRitE6hWdFS2DvdCG_2de-eA1RW8,1668
405
+ mqt/core/include/spdlog/details/log_msg_buffer.h,sha256=DUuJqi1HSQ89idBPu6Scq3UeaWZX8oV4mfQypZGbnSY,935
406
+ mqt/core/include/spdlog/details/mpmc_blocking_q.h,sha256=95SUmKXWjBeoarvMr9mWrJiETg0qUofAAjweCyCiK6Q,5282
407
+ mqt/core/include/spdlog/details/null_mutex.h,sha256=E3f95LVEF9yhs9Fi0PGMNflBjh25GjM5SZUvHIdxJ7E,930
408
+ mqt/core/include/spdlog/details/os-inl.h,sha256=G5r6xPD9GZZEi4gxrwWLuBLzPElpiU-HyfMbipsP8n8,18760
409
+ mqt/core/include/spdlog/details/os.h,sha256=5WPDcm0jTonWlExV-E5SEgWoRg95WCB3jCqbm-F_dVw,4110
410
+ mqt/core/include/spdlog/details/periodic_worker-inl.h,sha256=KYyE9VrEF-Q5dNBE9QVTZLSqWf7J0sjSSgAbc_ea4RM,620
411
+ mqt/core/include/spdlog/details/periodic_worker.h,sha256=XlFFUQcDZKIPNbB2uDggp-V3s7I_ZqolTYvZ6guMexc,1813
412
+ mqt/core/include/spdlog/details/registry-inl.h,sha256=AG_27SFQ48HldbvJNQFtTWI_1zC980epTZ0USqwpyGc,8897
413
+ mqt/core/include/spdlog/details/registry.h,sha256=3TI-sMe_CMFYmduNtCECVQUUYiRjUeHBIU5bEm9myVs,4464
414
+ mqt/core/include/spdlog/details/synchronous_factory.h,sha256=P8_MKKpO3CmY6eANIYNiYAYFuJ4MWOvyxyZ5UEEuHNw,751
415
+ mqt/core/include/spdlog/details/tcp_client-windows.h,sha256=xDT-cOIB4ahma1FvEMb8n7wMGUkWYjvxLusxP2vuFsg,4252
416
+ mqt/core/include/spdlog/details/tcp_client.h,sha256=kx96pqzBo6nFkpOA5_zT7J0XDpnaSheYROuH0fg7UBw,3885
417
+ mqt/core/include/spdlog/details/thread_pool-inl.h,sha256=D4oFvXjd6S_shtpzlX3D1Cuykhi1ZLED61me2fGjQtU,4264
418
+ mqt/core/include/spdlog/details/thread_pool.h,sha256=XmRWfrejs7ZiT84qoFx-f7iFx3hhj1vJgtTTaDpTBV8,3519
419
+ mqt/core/include/spdlog/details/udp_client-windows.h,sha256=SzWJ71zYgr0yLJ7LEFh-x8Hci6SXoSyHThJHKozPzx8,3134
420
+ mqt/core/include/spdlog/details/udp_client.h,sha256=xBi2FTUZEu6kDgQf0-iLiaRSCt8S6_Q_sa8QWk17vXk,2237
421
+ mqt/core/include/spdlog/details/windows_include.h,sha256=qu2zuQvWYlY9goh_7a8zgWfJUSVPRfnr_vJ62t4r0YY,188
422
+ mqt/core/include/spdlog/fmt/bin_to_hex.h,sha256=ABeYjYyL_sdli7nZ0DxUDbbppaB9BryZgffVBiKq1oI,7382
423
+ mqt/core/include/spdlog/fmt/chrono.h,sha256=xCNVZpT5-6PPQ8IEPa_nsKLCYTQcvCp4xFakTWtdTzg,551
424
+ mqt/core/include/spdlog/fmt/compile.h,sha256=cKImkZgC81VmvHVTUVMAdDTs71WwZIQAWRScoNKcTQ8,559
425
+ mqt/core/include/spdlog/fmt/fmt.h,sha256=XCh8socori7pQpSEqd0Cc6hw-WphDBcRgtJ92Ucej5c,825
426
+ mqt/core/include/spdlog/fmt/ostr.h,sha256=ZLzGdJXS1mpv7sQNHBSuvYbZm4sGTDLwNKvhtnSqtaQ,554
427
+ mqt/core/include/spdlog/fmt/ranges.h,sha256=oaQW_E9eYJbfC_iTkPefYlHJeksDShld7bTSjElvu6Y,551
428
+ mqt/core/include/spdlog/fmt/std.h,sha256=gBqPTTJGs0iPUZciE9cgUrVOx-Tmfp3RAAYP7sfowos,641
429
+ mqt/core/include/spdlog/fmt/xchar.h,sha256=8phzIQsgcz2FxZzUPhhWP5tIrsa9RTtNU8LdXuVYQ40,548
430
+ mqt/core/include/spdlog/fmt/bundled/args.h,sha256=zSpCMKK5XbYPAGc3Q3af5zcvD3CHE1IMq3hxc7UFUYc,7180
431
+ mqt/core/include/spdlog/fmt/bundled/base.h,sha256=E8jZU_stmNyVUondFmmZvSLbq_66f0hrNpPCxtnWJ9s,103990
432
+ mqt/core/include/spdlog/fmt/bundled/chrono.h,sha256=qk8RifAMooep5Vhcw7a1ffqPGgAO-vqIFDL0bq-92u0,79718
433
+ mqt/core/include/spdlog/fmt/bundled/color.h,sha256=-8NNQq92LNTkXvLJPQUIAtlW1AbFyeTJLqmwdJ_QLYo,24290
434
+ mqt/core/include/spdlog/fmt/bundled/compile.h,sha256=ENZI-_vOmUge7OKqpPnsjOirJf7whBRCKWtxScOGSHo,18792
435
+ mqt/core/include/spdlog/fmt/bundled/core.h,sha256=srZpIUWxHHwndNsQYHjJdXWkfRjoDHeDxoVmR1Ml67Q,187
436
+ mqt/core/include/spdlog/fmt/bundled/fmt.license.rst,sha256=B1gPKjs1cJznA9Uj9EeyQvbf7HWCqMDfECx_ooSTdfg,1431
437
+ mqt/core/include/spdlog/fmt/bundled/format-inl.h,sha256=esTUkHVorJnChGGIFZUFPS5ARe6ByJ0L3bd5xxjuc2w,80985
438
+ mqt/core/include/spdlog/fmt/bundled/format.h,sha256=msNHOeuZ1f4iDJbVlRm_jan7AQjRz1utvtFXGH5MPPs,157793
439
+ mqt/core/include/spdlog/fmt/bundled/os.h,sha256=Ax7PAuZarxvhbeSvF54bPRFUD4igmJZn1fQTj-k-WTg,12786
440
+ mqt/core/include/spdlog/fmt/bundled/ostream.h,sha256=xJ8Hvle3-yq8ieNChFdHQMJMLebW3wsIr_GguPU3wJA,5024
441
+ mqt/core/include/spdlog/fmt/bundled/printf.h,sha256=em_6w1TaoTfbmk7RTdgXt_e1tuXs9G2vJ0MfQeey5e8,20440
442
+ mqt/core/include/spdlog/fmt/bundled/ranges.h,sha256=CWCSh3gpDIElvjvPklQu9osxVFtreaPBkwzQnrWzRHM,28211
443
+ mqt/core/include/spdlog/fmt/bundled/std.h,sha256=ogzbgTUxCUFupDozCWAG0yMhWeiV6QtkEbaR0p9jR8A,22277
444
+ mqt/core/include/spdlog/fmt/bundled/xchar.h,sha256=1KrSITylnW2sMBVw294A4PDaoIi_hmkHCwKD3pP3slE,13636
445
+ mqt/core/include/spdlog/sinks/android_sink.h,sha256=cwMc3YZpyfaH_ZEivLHaXddB6QCLAfhz7jkrJ8nbVl0,4777
446
+ mqt/core/include/spdlog/sinks/ansicolor_sink-inl.h,sha256=o5FDECwQ-oyixt_cnuiB34MGyAUEXXArgGBBVp5blLE,5099
447
+ mqt/core/include/spdlog/sinks/ansicolor_sink.h,sha256=IGJCT-0PAtK3Sz8cy1TrgH9yEsxazAsrPSp_oZ9xikc,4029
448
+ mqt/core/include/spdlog/sinks/base_sink-inl.h,sha256=tC_ChRrXaRmuzqJ8q7lIe2xqzRUi_pR1GhONpVhi1PM,1808
449
+ mqt/core/include/spdlog/sinks/base_sink.h,sha256=pG7Xy5AOscJX-BEi49RWfkO4svmucpc7j0GxEHY5QMk,1604
450
+ mqt/core/include/spdlog/sinks/basic_file_sink-inl.h,sha256=a5W0u_9bhJNyuVsZNOJ29kO223AkRxbW8mxNGqOWjKc,1391
451
+ mqt/core/include/spdlog/sinks/basic_file_sink.h,sha256=OeLhgyx2r9WiOp43iLsBBDhIm1YPYmckaATfVMRFUCk,2316
452
+ mqt/core/include/spdlog/sinks/callback_sink.h,sha256=Vo7tl9XCn5QtgRr-hhTOrmwRC3T_pFNRI6W9nbMfJj8,1705
453
+ mqt/core/include/spdlog/sinks/daily_file_sink.h,sha256=7jLL3YC5_lGr4ErikNGZxGzsLsvzXnoueW2vcSuFINI,9610
454
+ mqt/core/include/spdlog/sinks/dist_sink.h,sha256=-muLUzaLPMlJAEbxogfDhSg18KAPb2dwBcnlJ5noYkc,2373
455
+ mqt/core/include/spdlog/sinks/dup_filter_sink.h,sha256=re0G0y3oaGG-CwenwVYc0anx34DNvA6xXE-XNcJswwk,3225
456
+ mqt/core/include/spdlog/sinks/hourly_file_sink.h,sha256=qjFDnDwwcum3eswoAABbWG9rbNwteQ4HgwULhienlBE,7279
457
+ mqt/core/include/spdlog/sinks/kafka_sink.h,sha256=m7EKXqNH8kALqt8NeU1QRRafrnc4gTK8DPPc8w7ADAg,4445
458
+ mqt/core/include/spdlog/sinks/mongo_sink.h,sha256=35pcNL7zSppV9L7FH5jD8FJ_3GG8juJHqbT0FJ6P8PA,4003
459
+ mqt/core/include/spdlog/sinks/msvc_sink.h,sha256=PMutY7qK3BmfsG9KikJOSMjKBvHN9MQC2chJ3TVOuJo,2048
460
+ mqt/core/include/spdlog/sinks/null_sink.h,sha256=ddkvGdgLpZ4VyGB-TJioahTiOOXKm1r9YVDc-ehtENY,1240
461
+ mqt/core/include/spdlog/sinks/ostream_sink.h,sha256=ikROJTe4LW_kqHwRYtTrU_lM6wGsvI1kaCjysk-GkIU,1222
462
+ mqt/core/include/spdlog/sinks/qt_sinks.h,sha256=BBk7Ic_3fNeNSE3R95wXIKvaCLEL-Hr4c3oFlW1IYUM,12412
463
+ mqt/core/include/spdlog/sinks/ringbuffer_sink.h,sha256=R0Rmd6LRI53qAkj77Pd76MdLfxsMfQs9Ediq_enqxBI,2081
464
+ mqt/core/include/spdlog/sinks/rotating_file_sink-inl.h,sha256=UX7GRpjBGeg3x8wqS7tB74YtX3t_rFHkgetQdlng1gY,6091
465
+ mqt/core/include/spdlog/sinks/rotating_file_sink.h,sha256=BkoeUObXGJiWmNQ_VD-xdMA7P76L49xraGjEX5IWcYk,3352
466
+ mqt/core/include/spdlog/sinks/sink-inl.h,sha256=4---b8exX8zARrdAsGHwq1hn-L19bPMO0hgKPNsErvs,725
467
+ mqt/core/include/spdlog/sinks/sink.h,sha256=f6SlxpxC-e7p1s1cxNUlvkvrdymcyIsJtKAfFV88whU,893
468
+ mqt/core/include/spdlog/sinks/stdout_color_sinks-inl.h,sha256=GH5kcmdnc-tZLMTfqUQcOupkMzvjld_G8nQVSeHakUE,1435
469
+ mqt/core/include/spdlog/sinks/stdout_color_sinks.h,sha256=ungx-iEjnmtSzaK40YxFf_HuXir9cwmI4Llbh0k54hw,1792
470
+ mqt/core/include/spdlog/sinks/stdout_sinks-inl.h,sha256=oEOgfvyJwTgeT9bXeuOK580R0NlkRdvG_TEOMfBfdwk,4384
471
+ mqt/core/include/spdlog/sinks/stdout_sinks.h,sha256=6uVqv7RG89FwJeIKVoYc8nz-SROQafJlcVZ5tgPKcJ4,2429
472
+ mqt/core/include/spdlog/sinks/syslog_sink.h,sha256=kt3b0iyOYll-rvHYhgk99Q26sZdjpNdYs5QifGjVVZY,4248
473
+ mqt/core/include/spdlog/sinks/systemd_sink.h,sha256=PJr8Hq6PMX00HAWvAcnMumhyGf82xTbf3zf9rq3mUPg,4872
474
+ mqt/core/include/spdlog/sinks/tcp_sink.h,sha256=XuhZSIhb5wAfUDVsjEQVuDAH4-okwST9dyotfpEl5As,2127
475
+ mqt/core/include/spdlog/sinks/udp_sink.h,sha256=y1YoyNqtRYjlvTul6g5stZXNGlIR3toexQfzQ8e0MfY,1858
476
+ mqt/core/include/spdlog/sinks/wincolor_sink-inl.h,sha256=jZ2sS7GhY9brCRP_SKt_WdtU-7YLdmigqZdTDd7VcTk,7096
477
+ mqt/core/include/spdlog/sinks/wincolor_sink.h,sha256=y72rvJ92E7bAku8dPyefZfD6p6iW8KTrsANQ9He3py4,2716
478
+ mqt/core/include/spdlog/sinks/win_eventlog_sink.h,sha256=R4Opb3uJsZ1IwU7qP4Lz_9ZZ6PrzSkRGZZzQwtgi45w,8888
479
+ mqt/core/ir/operations.pyi,sha256=WeJV-FG8YmbAX44RUAMGgb-f6U7Pt6-Kjwnlo91HikQ,27527
310
480
  mqt/core/ir/registers.pyi,sha256=0w_7LbvAMvL_d3w3A704RZdEFGg-w3_evtAXeSZbuCM,3057
311
481
  mqt/core/ir/symbolic.pyi,sha256=oS99apV6PliKFLMLwXdqmmed53lTqgQpMuxxBBweQHQ,5580
312
- mqt/core/ir/__init__.pyi,sha256=4NRX3DRrKUq82-CDpEKgJnHKJRq5LpDbMnDzgv8J4Ws,63239
482
+ mqt/core/ir/__init__.pyi,sha256=QzAqAU4fc8O1B3dUT7zXSuWso0YvVOAD8qbH_0VIELk,64867
313
483
  mqt/core/lib/mqt-core-algorithms.lib,sha256=0Tp5L9hpL-kdMcP2hie289iSD7Nj81na1vLi-tMvzEs,113678
314
- mqt/core/lib/mqt-core-circuit-optimizer.lib,sha256=CXBzKsFNiJWps-0rr0cMgRsGJLveWbWzPJJPOvxfhH4,246718
315
- mqt/core/lib/mqt-core-dd.lib,sha256=4QeQHXy6Ld8oDj09OMwoz2uuL9M5KpWEaRZH1x2d3Bs,990310
484
+ mqt/core/lib/mqt-core-circuit-optimizer.lib,sha256=lDMpjCn2-XgizfofGUPJLNVOPZBm6RkNE2t1DnKEwYQ,261344
485
+ mqt/core/lib/mqt-core-dd.lib,sha256=qPMkwrPn44kW6s2kOH4dHEoGtOHMW2G0YFe576xN9lk,990166
316
486
  mqt/core/lib/mqt-core-ds.lib,sha256=ml9anEsKoWUSEMKVebcRyVnzwSDrwbJs3vHL5d7mRm8,111442
317
- mqt/core/lib/mqt-core-ir.lib,sha256=H77cM-ifm3Vyjc9ii8RyQiwUgjW01fQHsW-DJj2XxVg,780816
487
+ mqt/core/lib/mqt-core-fomac.lib,sha256=EYGu_bWa7LT7w1dntAfqP-UiGVdJ11w8HG5zZFVi-c8,112190
488
+ mqt/core/lib/mqt-core-ir.lib,sha256=Vt6_9SfziZrN1_2jsPYCQRoUiNn-4zjSv3Zyoq7NHt4,784502
489
+ mqt/core/lib/mqt-core-na-fomac.lib,sha256=wizDGeoB3KSqIpy7iUfH1JljiqHWXK-Ui7vK1AkILOY,217394
318
490
  mqt/core/lib/mqt-core-na.lib,sha256=j4awV2Rfs8O12FWWmxl_cgPENCGGVLW4g8zJZWqODr4,67222
319
- mqt/core/lib/mqt-core-qasm.lib,sha256=RJl_VqjPF97lh9jH9StJ0crlw7CC6PtthBaFAYumaRU,979724
491
+ mqt/core/lib/mqt-core-qasm.lib,sha256=aaqIeTvog1QyiplXNI8DlN8RnZdE1kTTc1SVC7YyiA4,977608
492
+ mqt/core/lib/mqt-core-qdmi-driver.lib,sha256=lN64YK8aF7TsXBPpKbcyi7cRBVXK8Pc1VKN1z4rc7nY,91544
493
+ mqt/core/lib/mqt-core-qdmi-na-device-gen.lib,sha256=j5ba6ny1GCiOVvRSBXdV2-wC3Nlm0ieyRBxqC7ba2QA,3299524
494
+ mqt/core/lib/mqt-core-qdmi-na-device.lib,sha256=Aq0UCjiwbcQhoMskkPV_iv4cOVATTKlA94ETlGcM0SI,142176
320
495
  mqt/core/lib/mqt-core-zx.lib,sha256=fF8Rqt5szXsj-cfd0aZxYrq1lzGsDwK5KxhwVUIDHWk,248356
496
+ mqt/core/lib/spdlog.lib,sha256=Ondvirnadg2-FGrIDnk8HAi_ZTAQIOsv8-iHWdftNd0,3450354
497
+ mqt/core/lib/pkgconfig/spdlog.pc,sha256=h9phsH3NGQHYCpvPGXQFeLHLICo8uQPbcGTcOvo3jrI,376
498
+ mqt/core/na/fomac.cp314-win_arm64.pyd,sha256=H4IcXM9C3eGDKzsVOCraji5esgbcgen7DaF_6tuMSro,202240
499
+ mqt/core/na/fomac.pyi,sha256=f50fTqguNT7Mg8dNPil9AIZTL7VF-5-akSbbCeBeEvY,3038
500
+ mqt/core/na/__init__.py,sha256=pxnI5IFXWfh-fiwaDz_U0Vsk8AhJniNae0VtmxFbyyk,352
321
501
  mqt/core/plugins/__init__.py,sha256=lhizMH2ZxsZ0WgmHe3gCSBjwYz15Qxk7lT1u95yCSl0,256
322
- mqt/core/plugins/qiskit/mqt_to_qiskit.py,sha256=jvzJXdR8acPSOlxR3N4jU8n2yDQ1jfj2YHfbEa5bkUc,12098
323
- mqt/core/plugins/qiskit/qiskit_to_mqt.py,sha256=iX1TjiU_iaBVCKwGdshokyTXWgmmiSgw-9EiMLv2-3w,14142
502
+ mqt/core/plugins/qiskit/mqt_to_qiskit.py,sha256=F50mdmSkdmbyyAY0BCcZqyc6lqDLys5jFGbWH30__DA,14338
503
+ mqt/core/plugins/qiskit/qiskit_to_mqt.py,sha256=NHaqvVoYzxUWeD5HKYgJ8V__9HLdcINaJ7SuA6rwp-0,17892
324
504
  mqt/core/plugins/qiskit/__init__.py,sha256=dO9JctQj6loeWPO1cfgjUxKHgunA4JMKZDAHTe6cjXc,431
325
- mqt/core/share/cmake/mqt-core/AddMQTPythonBinding.cmake,sha256=jRsHD2FM9sNw1ZPysBy3rbFshJbXWWNlvB-9Jz4iXpA,1716
326
- mqt/core/share/cmake/mqt-core/Cache.cmake,sha256=PQ6waFO-oWqD062wrJueZNMlCdjtCZn-kABRmjFIYDU,1084
505
+ mqt/core/share/cmake/mqt-core/AddMQTPythonBinding.cmake,sha256=dAY2Fh3ZxRYMqXDsEDJmjf7M16XpvH-laLxFr7a5Znk,1802
506
+ mqt/core/share/cmake/mqt-core/Cache.cmake,sha256=U6AZwl-uIa2mzdFzbRuOAu4ID6fRcdQvT_f-yjvJOxw,1026
327
507
  mqt/core/share/cmake/mqt-core/FindGMP.cmake,sha256=GvBOMi1qei3a46g0EaGpprzGp9ps378qAPrxbCnzsco,3158
328
- mqt/core/share/cmake/mqt-core/mqt-core-config-version.cmake,sha256=5uWTkYAgTTYRQmjDfH4LAlLV0Twe1IHiMEI1mYfvrMY,3760
329
- mqt/core/share/cmake/mqt-core/mqt-core-config.cmake,sha256=InZRhVzU2des2J4GMZt1rl6ZNm575B1_sBJg0TF2JcE,1720
330
- mqt/core/share/cmake/mqt-core/mqt-core-targets-release.cmake,sha256=W3DRpQq-vQSXGat_qGpMKdJi0xbNzTVcATYhEiPK1bc,4872
331
- mqt/core/share/cmake/mqt-core/mqt-core-targets.cmake,sha256=l5gjZRpcItft5IQ1OadS9qrJAu_8UArQI0RhmAxh4Pc,30835
332
- mqt/core/share/cmake/mqt-core/PackageAddTest.cmake,sha256=zrzUwnc2Hm9pVoe203DSl4Uyxl8zJNAbQxO2LBTzIUo,1840
508
+ mqt/core/share/cmake/mqt-core/mqt-core-config-version.cmake,sha256=F0m44AMcawUrvHumW-5YAUg-KFPqbsqVaLHMq47Cfp8,3760
509
+ mqt/core/share/cmake/mqt-core/mqt-core-config.cmake,sha256=m8xkDiGIVKjB3CplsJKB8JAfAOHvhe4uItvhqwWoKzk,1770
510
+ mqt/core/share/cmake/mqt-core/mqt-core-targets-release.cmake,sha256=74d_XeF8k0jZnFpd91TitWcaRsJSgC_vkM91d9rJI04,7832
511
+ mqt/core/share/cmake/mqt-core/mqt-core-targets.cmake,sha256=D87ncsKaLnyKUWfRXzMo8RVO8QjLfeuvk3Ud6bd3EMQ,34929
512
+ mqt/core/share/cmake/mqt-core/PackageAddTest.cmake,sha256=INYq65kXCIVywCfNBi-98tG2LQYuUAN8uxlgQ7X-SpE,2014
333
513
  mqt/core/share/cmake/mqt-core/PreventInSourceBuilds.cmake,sha256=a_bKW96S3wbdb4Fu0WFdKpd19lx4zDBhMiDWY5PyCj4,954
334
- mqt/core/share/cmake/mqt-core/StandardProjectSettings.cmake,sha256=qrsK6mTrfOx5-ZWbKq6i60zIdu5p1APUVWcxXmEDq8w,3110
514
+ mqt/core/share/cmake/mqt-core/StandardProjectSettings.cmake,sha256=JUxIdzio9-S9y6wv1FMsCXfgmH3XPZj2sTNbeTFkD0E,3109
515
+ mqt/core/share/cmake/nlohmann_json/nlohmann_jsonConfig.cmake,sha256=qHncK2SOF6wyg275ATtabPEjSnS5pglizAgcN3bJ8T8,635
516
+ mqt/core/share/cmake/nlohmann_json/nlohmann_jsonConfigVersion.cmake,sha256=p-lCCo7RXSuWwo-FuIELnUpI9efh0_zSuFpEsNy4W04,696
517
+ mqt/core/share/cmake/nlohmann_json/nlohmann_jsonTargets.cmake,sha256=56MtJjNVLBelpA_AGMgikSLypomQzQiHkXfzTRR6tZE,4801
518
+ mqt/core/share/cmake/qdmi/Cache.cmake,sha256=rl1QJrCrMToYQvsR6ritluFsk8Qq0cZ5Mq5tRc76jdE,1760
519
+ mqt/core/share/cmake/qdmi/PrefixHandling.cmake,sha256=4MER_osk0JRaGjUeobke8ziC6BA6UIEanOeOdSoBhfs,3604
520
+ mqt/core/share/cmake/qdmi/prefix_defs.txt,sha256=xFrd0QGgDkh-uNpO8sJn4cahhBYiZ4zqDVLcmLlw1Ew,694
521
+ mqt/core/share/cmake/qdmi/qdmi-config-version.cmake,sha256=QoRAa74tobT61G8hJRxvpz7533_gtXrQHK61QfzdWbs,3760
522
+ mqt/core/share/cmake/qdmi/qdmi-config.cmake,sha256=kGJGFQGljoeBk8un8DgG1ILhlfPga7iHkz74l0kl1rQ,1765
523
+ mqt/core/share/cmake/qdmi/qdmi-targets.cmake,sha256=g9rfMUq231UZFFidKuiWO56WjgL5aRv28BJQgmZtwO0,5178
524
+ mqt/core/share/cmake/spdlog/spdlogConfig.cmake,sha256=pnN4gNU95TZC3964n42tLN5YAV_cCXxWRNVlIu3ZUxw,1403
525
+ mqt/core/share/cmake/spdlog/spdlogConfigTargets-release.cmake,sha256=Jl6C9OP4GrOsr0iA819-e771NBUWYEIb-wyFvJIwFE4,860
526
+ mqt/core/share/cmake/spdlog/spdlogConfigTargets.cmake,sha256=mJ-K250iGoVLhtnQgOHG6-xPCGz3w7C4rL_pproRk8A,5020
527
+ mqt/core/share/cmake/spdlog/spdlogConfigVersion.cmake,sha256=AkUDsyvTlW6Z2xyG11PRBPSG4tqO4Yib4bcqBBh1Q2o,2830
528
+ mqt/core/share/pkgconfig/nlohmann_json.pc,sha256=YrADev1YeVAtJq0Zn75CxE04iOJG3serqdzDkfpuoe0,212
335
529
  mqt/core/_compat/typing.py,sha256=Ug5WlI-rVB95uG27tD9tI9ZJ1FrXXlOj8uVLkwEHR-A,664
336
530
  mqt/core/_compat/__init__.py,sha256=AMtqqQ2XqcETMLOQzFsEKB5999ktwEjt66FVwq4zhDU,282
337
- mqt_core-3.2.1.dist-info/DELVEWHEEL,sha256=npaSveJI7GBCy9hbvLqTd7PEnKkuTZYBVExuEdu9EX8,448
338
- mqt_core-3.2.1.dist-info/entry_points.txt,sha256=mCvuLe8oe3Frh1UMVdRkE1ITs1tHq1K_GyK8GbgAthg,107
339
- mqt_core-3.2.1.dist-info/METADATA,sha256=Kq49kjGStR4HWhUq0j3OQVoCp-S7vtKjFY2l6gzIcpg,9170
340
- mqt_core-3.2.1.dist-info/RECORD,,
341
- mqt_core-3.2.1.dist-info/WHEEL,sha256=QiqyIOz8TTgSJK1m31LoqTsxsxCVzPqbrI72HmEulq8,106
342
- mqt_core-3.2.1.dist-info/licenses/LICENSE.md,sha256=T2LcLM4fquxU4Fe7TUQ81wRy0o97DrNkLIfSJpujQqA,1174
531
+ mqt_core-3.3.1.dist-info/DELVEWHEEL,sha256=9sgS_AkOtPR6uB19taFQcuQrvwUYrOMqjKsCs0PDBic,448
532
+ mqt_core-3.3.1.dist-info/entry_points.txt,sha256=mCvuLe8oe3Frh1UMVdRkE1ITs1tHq1K_GyK8GbgAthg,107
533
+ mqt_core-3.3.1.dist-info/METADATA,sha256=jp-5pEDYXm0ZMcnjxK9VY-skfVAxxMyOUsdFlV8z4mE,11601
534
+ mqt_core-3.3.1.dist-info/RECORD,,
535
+ mqt_core-3.3.1.dist-info/WHEEL,sha256=DFXpO6UbbaVSKagjDbi8rlFrL_fDb6sbwWCXPbVnvX4,106
536
+ mqt_core-3.3.1.dist-info/licenses/LICENSE.md,sha256=T2LcLM4fquxU4Fe7TUQ81wRy0o97DrNkLIfSJpujQqA,1174
343
537
  mqt_core.libs/msvcp140.dll,sha256=nLYl_Lwvu9b8oa7osksOvo-yI6PHpnKlWhfAcvZ7FG0,1376296
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: scikit-build-core 0.11.5
2
+ Generator: scikit-build-core 0.11.6
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp314-cp314-win_arm64
5
5