mqt-core 3.1.0__cp313-cp313t-win_amd64.whl → 3.2.1__cp313-cp313t-win_amd64.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 (37) hide show
  1. mqt/core/__init__.py +3 -3
  2. mqt/core/_version.py +2 -2
  3. mqt/core/bin/mqt-core-algorithms.dll +0 -0
  4. mqt/core/bin/mqt-core-circuit-optimizer.dll +0 -0
  5. mqt/core/bin/mqt-core-dd.dll +0 -0
  6. mqt/core/bin/mqt-core-ds.dll +0 -0
  7. mqt/core/bin/mqt-core-ir.dll +0 -0
  8. mqt/core/bin/mqt-core-na.dll +0 -0
  9. mqt/core/bin/mqt-core-qasm.dll +0 -0
  10. mqt/core/bin/mqt-core-zx.dll +0 -0
  11. mqt/core/dd.cp313t-win_amd64.pyd +0 -0
  12. mqt/core/dd.pyi +9 -22
  13. mqt/core/include/mqt-core/datastructures/DirectedAcyclicGraph.hpp +4 -4
  14. mqt/core/include/mqt-core/datastructures/DirectedGraph.hpp +8 -8
  15. mqt/core/include/mqt-core/datastructures/UndirectedGraph.hpp +9 -9
  16. mqt/core/include/mqt-core/dd/Node.hpp +1 -1
  17. mqt/core/include/mqt-core/dd/Package.hpp +3 -3
  18. mqt/core/include/mqt-core/ir/operations/Expression.hpp +1 -1
  19. mqt/core/ir/operations.pyi +58 -86
  20. mqt/core/ir.cp313t-win_amd64.pyd +0 -0
  21. mqt/core/lib/mqt-core-algorithms.lib +0 -0
  22. mqt/core/lib/mqt-core-circuit-optimizer.lib +0 -0
  23. mqt/core/lib/mqt-core-dd.lib +0 -0
  24. mqt/core/lib/mqt-core-ds.lib +0 -0
  25. mqt/core/lib/mqt-core-ir.lib +0 -0
  26. mqt/core/lib/mqt-core-na.lib +0 -0
  27. mqt/core/lib/mqt-core-qasm.lib +0 -0
  28. mqt/core/lib/mqt-core-zx.lib +0 -0
  29. mqt/core/share/cmake/mqt-core/mqt-core-config-version.cmake +3 -3
  30. mqt/core/share/cmake/mqt-core/mqt-core-targets.cmake +1 -1
  31. mqt_core-3.2.1.dist-info/DELVEWHEEL +2 -0
  32. {mqt_core-3.1.0.dist-info → mqt_core-3.2.1.dist-info}/METADATA +5 -4
  33. {mqt_core-3.1.0.dist-info → mqt_core-3.2.1.dist-info}/RECORD +36 -36
  34. mqt_core-3.1.0.dist-info/DELVEWHEEL +0 -2
  35. {mqt_core-3.1.0.dist-info → mqt_core-3.2.1.dist-info}/WHEEL +0 -0
  36. {mqt_core-3.1.0.dist-info → mqt_core-3.2.1.dist-info}/entry_points.txt +0 -0
  37. {mqt_core-3.1.0.dist-info → mqt_core-3.2.1.dist-info}/licenses/LICENSE.md +0 -0
mqt/core/__init__.py CHANGED
@@ -12,14 +12,14 @@ from __future__ import annotations
12
12
 
13
13
 
14
14
  # start delvewheel patch
15
- def _delvewheel_patch_1_10_1():
15
+ def _delvewheel_patch_1_11_0():
16
16
  import os
17
17
  if os.path.isdir(libs_dir := os.path.abspath(os.path.join(os.path.dirname(__file__), os.pardir, os.pardir, 'mqt_core.libs'))):
18
18
  os.add_dll_directory(libs_dir)
19
19
 
20
20
 
21
- _delvewheel_patch_1_10_1()
22
- del _delvewheel_patch_1_10_1
21
+ _delvewheel_patch_1_11_0()
22
+ del _delvewheel_patch_1_11_0
23
23
  # end delvewheel patch
24
24
 
25
25
  import os
mqt/core/_version.py CHANGED
@@ -17,5 +17,5 @@ __version__: str
17
17
  __version_tuple__: VERSION_TUPLE
18
18
  version_tuple: VERSION_TUPLE
19
19
 
20
- __version__ = version = '3.1.0'
21
- __version_tuple__ = version_tuple = (3, 1, 0)
20
+ __version__ = version = '3.2.1'
21
+ __version_tuple__ = version_tuple = (3, 2, 1)
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
mqt/core/dd.pyi CHANGED
@@ -9,7 +9,8 @@
9
9
  """MQT Core DD - The MQT Decision Diagram Package."""
10
10
 
11
11
  from collections.abc import Iterable
12
- from typing import Any, ClassVar
12
+ from enum import Enum
13
+ from typing import Any
13
14
 
14
15
  import numpy as np
15
16
  import numpy.typing as npt
@@ -954,36 +955,22 @@ class MatrixDD:
954
955
  format_as_polar: Whether to format the edge weights in polar coordinates.
955
956
  """
956
957
 
957
- class BasisStates:
958
+ class BasisStates(Enum):
958
959
  """Enumeration of basis states."""
959
960
 
960
- __members__: ClassVar[dict[str, BasisStates]]
961
- zero: ClassVar[BasisStates]
961
+ zero = ...
962
962
  r"""The computational basis state :math:`|0\rangle`."""
963
- one: ClassVar[BasisStates]
963
+ one = ...
964
964
  r"""The computational basis state :math:`|1\rangle`."""
965
- plus: ClassVar[BasisStates]
965
+ plus = ...
966
966
  r"""The superposition state :math:`|+\rangle = \frac{1}{\sqrt{2}}(|0\rangle + |1\rangle)`."""
967
- minus: ClassVar[BasisStates]
967
+ minus = ...
968
968
  r"""The superposition state :math:`|-\rangle = \frac{1}{\sqrt{2}}(|0\rangle - |1\rangle)`."""
969
- left: ClassVar[BasisStates]
969
+ left = ...
970
970
  r"""The rotational superposition state :math:`|L\rangle = \frac{1}{\sqrt{2}}(|0\rangle + i|1\rangle)`."""
971
- right: ClassVar[BasisStates]
971
+ right = ...
972
972
  r"""The rotational superposition state :math:`|R\rangle = \frac{1}{\sqrt{2}}(|0\rangle - i|1\rangle)`."""
973
973
 
974
- def __eq__(self, other: object) -> bool: ...
975
- def __getstate__(self) -> int: ...
976
- def __hash__(self) -> int: ...
977
- def __index__(self) -> int: ...
978
- def __init__(self, value: int) -> None: ...
979
- def __int__(self) -> int: ...
980
- def __ne__(self, other: object) -> bool: ...
981
- def __setstate__(self, state: int) -> None: ...
982
- @property
983
- def name(self) -> str: ...
984
- @property
985
- def value(self) -> int: ...
986
-
987
974
  class Vector:
988
975
  """A class representing a vector of complex numbers.
989
976
 
@@ -38,10 +38,10 @@ public:
38
38
  closureMatrix[i][i] = true;
39
39
  }
40
40
  auto addEdge(const V& u, const V& v) -> void override {
41
- if (this->mapping.find(u) == this->mapping.end()) {
41
+ if (!this->mapping.contains(u)) {
42
42
  addVertex(u);
43
43
  }
44
- if (this->mapping.find(v) == this->mapping.end()) {
44
+ if (!this->mapping.contains(v)) {
45
45
  addVertex(v);
46
46
  }
47
47
  std::size_t const i = this->mapping.at(u);
@@ -62,10 +62,10 @@ public:
62
62
  }
63
63
  }
64
64
  [[nodiscard]] auto isReachable(const V& u, const V& v) const -> bool {
65
- if (this->mapping.find(u) == this->mapping.end()) {
65
+ if (!this->mapping.contains(u)) {
66
66
  throw std::invalid_argument("Vertex u not in graph.");
67
67
  }
68
- if (this->mapping.find(v) == this->mapping.end()) {
68
+ if (!this->mapping.contains(v)) {
69
69
  throw std::invalid_argument("Vertex v not in graph.");
70
70
  }
71
71
  return closureMatrix[this->mapping.at(u)][this->mapping.at(v)];
@@ -59,7 +59,7 @@ public:
59
59
  virtual ~DirectedGraph() = default;
60
60
  virtual auto addVertex(const V& v) -> void {
61
61
  // check whether the vertex is already in the graph, if so do nothing
62
- if (mapping.find(v) != mapping.end()) {
62
+ if (mapping.contains(v)) {
63
63
  std::stringstream ss;
64
64
  ss << "The vertex " << v << " is already in the graph.";
65
65
  throw std::invalid_argument(ss.str());
@@ -75,10 +75,10 @@ public:
75
75
  outDegrees.emplace_back(0);
76
76
  }
77
77
  virtual auto addEdge(const V& u, const V& v) -> void {
78
- if (mapping.find(u) == mapping.end()) {
78
+ if (!mapping.contains(u)) {
79
79
  addVertex(u);
80
80
  }
81
- if (mapping.find(v) == mapping.end()) {
81
+ if (!mapping.contains(v)) {
82
82
  addVertex(v);
83
83
  }
84
84
  const auto i = mapping.at(u);
@@ -93,7 +93,7 @@ public:
93
93
  [[nodiscard]] auto getNVertices() const -> std::size_t { return nVertices; }
94
94
  [[nodiscard]] auto getNEdges() const -> std::size_t { return nEdges; }
95
95
  [[nodiscard]] auto getInDegree(const V& v) const -> std::size_t {
96
- if (mapping.find(v) == mapping.end()) {
96
+ if (!mapping.contains(v)) {
97
97
  std::stringstream ss;
98
98
  ss << "The vertex " << v << " is not in the graph.";
99
99
  throw std::invalid_argument(ss.str());
@@ -102,7 +102,7 @@ public:
102
102
  return inDegrees[i];
103
103
  }
104
104
  [[nodiscard]] auto getOutDegree(const V& v) const -> std::size_t {
105
- if (mapping.find(v) == mapping.end()) {
105
+ if (!mapping.contains(v)) {
106
106
  std::stringstream ss;
107
107
  ss << "The vertex " << v << " is not in the graph.";
108
108
  throw std::invalid_argument(ss.str());
@@ -113,18 +113,18 @@ public:
113
113
  [[nodiscard]] auto getVertices() const -> std::unordered_set<V> {
114
114
  return std::accumulate(mapping.cbegin(), mapping.cend(),
115
115
  std::unordered_set<V>(),
116
- [](auto& acc, const auto& v) {
116
+ [](auto acc, const auto& v) {
117
117
  acc.emplace(v.first);
118
118
  return acc;
119
119
  });
120
120
  }
121
121
  [[nodiscard]] auto isEdge(const V& u, const V& v) const -> bool {
122
- if (mapping.find(u) == mapping.end()) {
122
+ if (!mapping.contains(u)) {
123
123
  std::stringstream ss;
124
124
  ss << "The vertex " << u << " is not in the graph.";
125
125
  throw std::invalid_argument(ss.str());
126
126
  }
127
- if (mapping.find(v) == mapping.end()) {
127
+ if (!mapping.contains(v)) {
128
128
  std::stringstream ss;
129
129
  ss << "The vertex " << v << " is not in the graph.";
130
130
  throw std::invalid_argument(ss.str());
@@ -62,7 +62,7 @@ protected:
62
62
  public:
63
63
  auto addVertex(const V& v) -> void {
64
64
  // check whether the vertex is already in the graph, if so do nothing
65
- if (mapping.find(v) == mapping.end()) {
65
+ if (!mapping.contains(v)) {
66
66
  mapping[v] = nVertices;
67
67
  invMapping.emplace_back(v);
68
68
  ++nVertices;
@@ -80,10 +80,10 @@ public:
80
80
  }
81
81
  }
82
82
  auto addEdge(const V& u, const V& v, const E& e) -> void {
83
- if (mapping.find(u) == mapping.end()) {
83
+ if (!mapping.contains(u)) {
84
84
  addVertex(u);
85
85
  }
86
- if (mapping.find(v) == mapping.end()) {
86
+ if (!mapping.contains(v)) {
87
87
  addVertex(v);
88
88
  }
89
89
  const auto i = mapping.at(u);
@@ -132,7 +132,7 @@ public:
132
132
  }
133
133
  [[nodiscard]] auto getAdjacentEdges(const V& v) const
134
134
  -> std::unordered_set<std::pair<V, V>, PairHash<V, V>> {
135
- if (mapping.find(v) == mapping.end()) {
135
+ if (!mapping.contains(v)) {
136
136
  std::stringstream ss;
137
137
  ss << "The vertex " << v << " is not in the graph.";
138
138
  throw std::invalid_argument(ss.str());
@@ -149,7 +149,7 @@ public:
149
149
  return result;
150
150
  }
151
151
  [[nodiscard]] auto getNeighbours(const V& v) const -> std::unordered_set<V> {
152
- if (mapping.find(v) == mapping.end()) {
152
+ if (!mapping.contains(v)) {
153
153
  std::stringstream ss;
154
154
  ss << "The vertex " << v << " is not in the graph.";
155
155
  throw std::invalid_argument(ss.str());
@@ -165,7 +165,7 @@ public:
165
165
  return result;
166
166
  }
167
167
  [[nodiscard]] auto getDegree(const V& v) const -> std::size_t {
168
- if (mapping.find(v) == mapping.end()) {
168
+ if (!mapping.contains(v)) {
169
169
  std::stringstream ss;
170
170
  ss << "The vertex " << v << " is not in the graph.";
171
171
  throw std::invalid_argument(ss.str());
@@ -176,18 +176,18 @@ public:
176
176
  [[nodiscard]] auto getVertices() const -> std::unordered_set<V> {
177
177
  return std::accumulate(mapping.cbegin(), mapping.cend(),
178
178
  std::unordered_set<V>(),
179
- [](auto& acc, const auto& v) {
179
+ [](auto acc, const auto& v) {
180
180
  acc.emplace(v.first);
181
181
  return acc;
182
182
  });
183
183
  }
184
184
  [[nodiscard]] auto isAdjacent(const V& u, const V& v) const -> bool {
185
- if (mapping.find(u) == mapping.end()) {
185
+ if (!mapping.contains(u)) {
186
186
  std::stringstream ss;
187
187
  ss << "The vertex " << u << " is not in the graph.";
188
188
  throw std::invalid_argument(ss.str());
189
189
  }
190
- if (mapping.find(v) == mapping.end()) {
190
+ if (!mapping.contains(v)) {
191
191
  std::stringstream ss;
192
192
  ss << "The vertex " << v << " is not in the graph.";
193
193
  throw std::invalid_argument(ss.str());
@@ -57,7 +57,7 @@ struct NodeBase : LLBase {
57
57
  void mark() noexcept { flags |= MARK_FLAG; }
58
58
 
59
59
  /// @brief Unmark the node.
60
- void unmark() noexcept { flags &= ~MARK_FLAG; }
60
+ void unmark() noexcept { flags &= static_cast<uint16_t>(~MARK_FLAG); }
61
61
 
62
62
  /// Getter for the next object.
63
63
  [[nodiscard]] NodeBase* next() const noexcept {
@@ -1821,7 +1821,7 @@ public:
1821
1821
  if (edge.w.approximatelyZero()) {
1822
1822
  continue;
1823
1823
  }
1824
- if (mappedNode.find(edge.p) != mappedNode.end()) {
1824
+ if (mappedNode.contains(edge.p)) {
1825
1825
  continue;
1826
1826
  }
1827
1827
 
@@ -1840,7 +1840,7 @@ public:
1840
1840
  if (edge.w.approximatelyZero()) {
1841
1841
  continue;
1842
1842
  }
1843
- if (mappedNode.find(edge.p) != mappedNode.end()) {
1843
+ if (mappedNode.contains(edge.p)) {
1844
1844
  continue;
1845
1845
  }
1846
1846
  hasChild = edge.p == stack.top()->p;
@@ -1852,7 +1852,7 @@ public:
1852
1852
  stack.push(currentEdge);
1853
1853
  currentEdge = temp;
1854
1854
  } else {
1855
- if (mappedNode.find(currentEdge->p) != mappedNode.end()) {
1855
+ if (mappedNode.contains(currentEdge->p)) {
1856
1856
  currentEdge = nullptr;
1857
1857
  continue;
1858
1858
  }
@@ -210,7 +210,7 @@ public:
210
210
  */
211
211
  [[nodiscard]] bool
212
212
  totalAssignment(const VariableAssignment& assignment) const {
213
- return assignment.find(getVar()) != assignment.end();
213
+ return assignment.contains(getVar());
214
214
  }
215
215
 
216
216
  /**
@@ -8,7 +8,8 @@
8
8
 
9
9
  from abc import ABC, abstractmethod
10
10
  from collections.abc import Iterable, Mapping, MutableSequence, Sequence
11
- from typing import ClassVar, overload
11
+ from enum import Enum
12
+ from typing import overload
12
13
 
13
14
  from .registers import ClassicalRegister
14
15
  from .symbolic import Expression, Variable
@@ -33,34 +34,23 @@ class Control:
33
34
  type_: The type of the control (default is positive).
34
35
  """
35
36
 
36
- class Type:
37
- """The type of a control. It can be either positive or negative."""
37
+ class Type(Enum):
38
+ """Enumeration of control types.
38
39
 
39
- __members__: ClassVar[dict[Control.Type, str]]
40
- Neg: ClassVar[Control.Type]
40
+ It can be either positive or negative.
41
+ """
42
+
43
+ Neg = ...
41
44
  r"""A negative control.
42
45
 
43
46
  The operation that is controlled on this qubit is only executed if the qubit is in the :math:`|0\rangle` state.
44
47
  """
45
- Pos: ClassVar[Control.Type]
48
+ Pos = ...
46
49
  r"""A positive control.
47
50
 
48
51
  The operation that is controlled on this qubit is only executed if the qubit is in the :math:`|1\rangle` state.
49
52
  """
50
53
 
51
- def __eq__(self, other: object) -> bool: ...
52
- def __getstate__(self) -> int: ...
53
- def __hash__(self) -> int: ...
54
- def __index__(self) -> int: ...
55
- def __init__(self, value: int) -> None: ...
56
- def __int__(self) -> int: ...
57
- def __ne__(self, other: object) -> bool: ...
58
- def __setstate__(self, state: int) -> None: ...
59
- @property
60
- def name(self) -> str: ...
61
- @property
62
- def value(self) -> int: ...
63
-
64
54
  qubit: int
65
55
  type_: Type
66
56
 
@@ -81,18 +71,17 @@ class Control:
81
71
  def __hash__(self) -> int:
82
72
  """Get the hash of the control."""
83
73
 
84
- class OpType:
85
- """An Enum-like class that represents the type of an operation."""
74
+ class OpType(Enum):
75
+ """Enumeration of operation types."""
86
76
 
87
- __members__: ClassVar[dict[OpType, str]] # readonly
88
- barrier: ClassVar[OpType]
77
+ barrier = ...
89
78
  """
90
79
  A barrier operation. It is used to separate operations in the circuit.
91
80
 
92
81
  See Also:
93
82
  :meth:`mqt.core.ir.QuantumComputation.barrier`
94
83
  """
95
- classic_controlled: ClassVar[OpType]
84
+ classic_controlled = ...
96
85
  """
97
86
  A classic controlled operation.
98
87
 
@@ -101,256 +90,256 @@ class OpType:
101
90
  See Also:
102
91
  :meth:`mqt.core.ir.QuantumComputation.classic_controlled`
103
92
  """
104
- compound: ClassVar[OpType]
93
+ compound = ...
105
94
  """
106
95
  A compound operation. It is used to group multiple operations into a single operation.
107
96
 
108
97
  See Also:
109
98
  :class:`.CompoundOperation`
110
99
  """
111
- dcx: ClassVar[OpType]
100
+ dcx = ...
112
101
  """
113
102
  A DCX gate.
114
103
 
115
104
  See Also:
116
105
  :meth:`mqt.core.ir.QuantumComputation.dcx`
117
106
  """
118
- ecr: ClassVar[OpType]
107
+ ecr = ...
119
108
  """
120
109
  An ECR gate.
121
110
 
122
111
  See Also:
123
112
  :meth:`mqt.core.ir.QuantumComputation.ecr`
124
113
  """
125
- gphase: ClassVar[OpType]
114
+ gphase = ...
126
115
  """
127
116
  A global phase operation.
128
117
 
129
118
  See Also:
130
119
  :meth:`mqt.core.ir.QuantumComputation.gphase`
131
120
  """
132
- h: ClassVar[OpType]
121
+ h = ...
133
122
  """
134
123
  A Hadamard gate.
135
124
 
136
125
  See Also:
137
126
  :meth:`mqt.core.ir.QuantumComputation.h`
138
127
  """
139
- i: ClassVar[OpType]
128
+ i = ...
140
129
  """
141
130
  An identity operation.
142
131
 
143
132
  See Also:
144
133
  :meth:`mqt.core.ir.QuantumComputation.i`
145
134
  """
146
- iswap: ClassVar[OpType]
135
+ iswap = ...
147
136
  """
148
137
  An iSWAP gate.
149
138
 
150
139
  See Also:
151
140
  :meth:`mqt.core.ir.QuantumComputation.iswap`
152
141
  """
153
- iswapdg: ClassVar[OpType]
142
+ iswapdg = ...
154
143
  r"""
155
144
  An :math:`i\text{SWAP}^\dagger` gate.
156
145
 
157
146
  See Also:
158
147
  :meth:`mqt.core.ir.QuantumComputation.iswapdg`
159
148
  """
160
- measure: ClassVar[OpType]
149
+ measure = ...
161
150
  """
162
151
  A measurement operation.
163
152
 
164
153
  See Also:
165
154
  :meth:`mqt.core.ir.QuantumComputation.measure`
166
155
  """
167
- none: ClassVar[OpType]
156
+ none = ...
168
157
  """
169
158
  A placeholder operation. It is used to represent an operation that is not yet defined.
170
159
  """
171
- peres: ClassVar[OpType]
160
+ peres = ...
172
161
  """
173
162
  A Peres gate.
174
163
 
175
164
  See Also:
176
165
  :meth:`mqt.core.ir.QuantumComputation.peres`
177
166
  """
178
- peresdg: ClassVar[OpType]
167
+ peresdg = ...
179
168
  r"""
180
169
  A :math:`\text{Peres}^\dagger` gate.
181
170
 
182
171
  See Also:
183
172
  :meth:`mqt.core.ir.QuantumComputation.peresdg`
184
173
  """
185
- p: ClassVar[OpType]
174
+ p = ...
186
175
  """
187
176
  A phase gate.
188
177
 
189
178
  See Also:
190
179
  :meth:`mqt.core.ir.QuantumComputation.p`
191
180
  """
192
- reset: ClassVar[OpType]
181
+ reset = ...
193
182
  """
194
183
  A reset operation.
195
184
 
196
185
  See Also:
197
186
  :meth:`mqt.core.ir.QuantumComputation.reset`
198
187
  """
199
- rx: ClassVar[OpType]
188
+ rx = ...
200
189
  r"""
201
190
  An :math:`R_x` gate.
202
191
 
203
192
  See Also:
204
193
  :meth:`mqt.core.ir.QuantumComputation.rx`
205
194
  """
206
- rxx: ClassVar[OpType]
195
+ rxx = ...
207
196
  r"""
208
197
  An :math:`R_{xx}` gate.
209
198
 
210
199
  See Also:
211
200
  :meth:`mqt.core.ir.QuantumComputation.rxx`
212
201
  """
213
- ry: ClassVar[OpType]
202
+ ry = ...
214
203
  r"""
215
204
  An :math:`R_y` gate.
216
205
 
217
206
  See Also:
218
207
  :meth:`mqt.core.ir.QuantumComputation.ry`
219
208
  """
220
- ryy: ClassVar[OpType]
209
+ ryy = ...
221
210
  r"""
222
211
  An :math:`R_{yy}` gate.
223
212
 
224
213
  See Also:
225
214
  :meth:`mqt.core.ir.QuantumComputation.ryy`
226
215
  """
227
- rz: ClassVar[OpType]
216
+ rz = ...
228
217
  r"""
229
218
  An :math:`R_z` gate.
230
219
 
231
220
  See Also:
232
221
  :meth:`mqt.core.ir.QuantumComputation.rz`
233
222
  """
234
- rzx: ClassVar[OpType]
223
+ rzx = ...
235
224
  r"""
236
225
  An :math:`R_{zx}` gate.
237
226
 
238
227
  See Also:
239
228
  :meth:`mqt.core.ir.QuantumComputation.rzx`
240
229
  """
241
- rzz: ClassVar[OpType]
230
+ rzz = ...
242
231
  r"""
243
232
  An :math:`R_{zz}` gate.
244
233
 
245
234
  See Also:
246
235
  :meth:`mqt.core.ir.QuantumComputation.rzz`
247
236
  """
248
- s: ClassVar[OpType]
237
+ s = ...
249
238
  """
250
239
  An S gate.
251
240
 
252
241
  See Also:
253
242
  :meth:`mqt.core.ir.QuantumComputation.s`
254
243
  """
255
- sdg: ClassVar[OpType]
244
+ sdg = ...
256
245
  r"""
257
246
  An :math:`S^\dagger` gate.
258
247
 
259
248
  See Also:
260
249
  :meth:`mqt.core.ir.QuantumComputation.sdg`
261
250
  """
262
- swap: ClassVar[OpType]
251
+ swap = ...
263
252
  """
264
253
  A SWAP gate.
265
254
 
266
255
  See Also:
267
256
  :meth:`mqt.core.ir.QuantumComputation.swap`
268
257
  """
269
- sx: ClassVar[OpType]
258
+ sx = ...
270
259
  r"""
271
260
  A :math:`\sqrt{X}` gate.
272
261
 
273
262
  See Also:
274
263
  :meth:`mqt.core.ir.QuantumComputation.sx`
275
264
  """
276
- sxdg: ClassVar[OpType]
265
+ sxdg = ...
277
266
  r"""
278
267
  A :math:`\sqrt{X}^\dagger` gate.
279
268
 
280
269
  See Also:
281
270
  :meth:`mqt.core.ir.QuantumComputation.sxdg`
282
271
  """
283
- t: ClassVar[OpType]
272
+ t = ...
284
273
  """
285
274
  A T gate.
286
275
 
287
276
  See Also:
288
277
  :meth:`mqt.core.ir.QuantumComputation.t`
289
278
  """
290
- tdg: ClassVar[OpType]
279
+ tdg = ...
291
280
  r"""
292
281
  A :math:`T^\dagger` gate.
293
282
 
294
283
  See Also:
295
284
  :meth:`mqt.core.ir.QuantumComputation.tdg`
296
285
  """
297
- u2: ClassVar[OpType]
286
+ u2 = ...
298
287
  """
299
288
  A U2 gate.
300
289
 
301
290
  See Also:
302
291
  :meth:`mqt.core.ir.QuantumComputation.u2`
303
292
  """
304
- u: ClassVar[OpType]
293
+ u = ...
305
294
  """
306
295
  A U gate.
307
296
 
308
297
  See Also:
309
298
  :meth:`mqt.core.ir.QuantumComputation.u`
310
299
  """
311
- v: ClassVar[OpType]
300
+ v = ...
312
301
  """
313
302
  A V gate.
314
303
 
315
304
  See Also:
316
305
  :meth:`mqt.core.ir.QuantumComputation.v`
317
306
  """
318
- vdg: ClassVar[OpType]
307
+ vdg = ...
319
308
  r"""
320
309
  A :math:`V^\dagger` gate.
321
310
 
322
311
  See Also:
323
312
  :meth:`mqt.core.ir.QuantumComputation.vdg`
324
313
  """
325
- x: ClassVar[OpType]
314
+ x = ...
326
315
  """
327
316
  An X gate.
328
317
 
329
318
  See Also:
330
319
  :meth:`mqt.core.ir.QuantumComputation.x`
331
320
  """
332
- xx_minus_yy: ClassVar[OpType]
321
+ xx_minus_yy = ...
333
322
  r"""
334
323
  An :math:`R_{XX - YY}` gate.
335
324
 
336
325
  See Also:
337
326
  :meth:`mqt.core.ir.QuantumComputation.xx_minus_yy`
338
327
  """
339
- xx_plus_yy: ClassVar[OpType]
328
+ xx_plus_yy = ...
340
329
  r"""
341
330
  An :math:`R_{XX + YY}` gate.
342
331
 
343
332
  See Also:
344
333
  :meth:`mqt.core.ir.QuantumComputation.xx_plus_yy`
345
334
  """
346
- y: ClassVar[OpType]
335
+ y = ...
347
336
  """
348
337
  A Y gate.
349
338
 
350
339
  See Also:
351
340
  :meth:`mqt.core.ir.QuantumComputation.y`
352
341
  """
353
- z: ClassVar[OpType]
342
+ z = ...
354
343
  """
355
344
  A Z gate.
356
345
 
@@ -358,22 +347,6 @@ class OpType:
358
347
  :meth:`mqt.core.ir.QuantumComputation.z`
359
348
  """
360
349
 
361
- @property
362
- def name(self) -> str: ...
363
- @property
364
- def value(self) -> int: ...
365
- def __eq__(self, other: object) -> bool: ...
366
- def __getstate__(self) -> int: ...
367
- def __hash__(self) -> int: ...
368
- def __index__(self) -> int: ...
369
- @overload
370
- def __init__(self, value: int) -> None: ...
371
- @overload
372
- def __init__(self, arg0: str) -> None: ...
373
- def __int__(self) -> int: ...
374
- def __ne__(self, other: object) -> bool: ...
375
- def __setstate__(self, state: int) -> None: ...
376
-
377
350
  class Operation(ABC):
378
351
  """An abstract base class for operations that can be added to a :class:`~mqt.core.ir.QuantumComputation`."""
379
352
 
@@ -906,21 +879,20 @@ class SymbolicOperation(StandardOperation):
906
879
  assignment: The assignment of the symbolic parameters.
907
880
  """
908
881
 
909
- class ComparisonKind:
910
- """An Enum-like class that represents the kind of comparison for classic controlled operations."""
882
+ class ComparisonKind(Enum):
883
+ """Enumeration of comparison types for classic-controlled operations."""
911
884
 
912
- __members__: ClassVar[dict[ComparisonKind, str]] # readonly
913
- eq: ClassVar[ComparisonKind]
885
+ eq = ...
914
886
  """Equality comparison."""
915
- neq: ClassVar[ComparisonKind]
887
+ neq = ...
916
888
  """Inequality comparison."""
917
- lt: ClassVar[ComparisonKind]
889
+ lt = ...
918
890
  """Less than comparison."""
919
- leq: ClassVar[ComparisonKind]
891
+ leq = ...
920
892
  """Less than or equal comparison."""
921
- gt: ClassVar[ComparisonKind]
893
+ gt = ...
922
894
  """Greater than comparison."""
923
- geq: ClassVar[ComparisonKind]
895
+ geq = ...
924
896
  """Greater than or equal comparison."""
925
897
 
926
898
  class ClassicControlledOperation(Operation):
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -10,13 +10,13 @@
10
10
  # The variable CVF_VERSION must be set before calling configure_file().
11
11
 
12
12
 
13
- set(PACKAGE_VERSION "3.1.0")
13
+ set(PACKAGE_VERSION "3.2.1")
14
14
 
15
15
  if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
16
16
  set(PACKAGE_VERSION_COMPATIBLE FALSE)
17
17
  else()
18
18
 
19
- if("3.1.0" MATCHES "^([0-9]+)\\.([0-9]+)")
19
+ if("3.2.1" MATCHES "^([0-9]+)\\.([0-9]+)")
20
20
  set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}")
21
21
  set(CVF_VERSION_MINOR "${CMAKE_MATCH_2}")
22
22
 
@@ -27,7 +27,7 @@ else()
27
27
  string(REGEX REPLACE "^0+" "" CVF_VERSION_MINOR "${CVF_VERSION_MINOR}")
28
28
  endif()
29
29
  else()
30
- set(CVF_VERSION_MAJOR "3.1.0")
30
+ set(CVF_VERSION_MAJOR "3.2.1")
31
31
  set(CVF_VERSION_MINOR "")
32
32
  endif()
33
33
 
@@ -74,7 +74,7 @@ set_target_properties(MQT::ProjectOptions PROPERTIES
74
74
  add_library(MQT::CoreIR SHARED IMPORTED)
75
75
 
76
76
  set_target_properties(MQT::CoreIR PROPERTIES
77
- INTERFACE_COMPILE_FEATURES "cxx_std_17"
77
+ INTERFACE_COMPILE_FEATURES "cxx_std_20"
78
78
  )
79
79
 
80
80
  if(NOT CMAKE_VERSION VERSION_LESS "3.23.0")
@@ -0,0 +1,2 @@
1
+ Version: 1.11.0
2
+ Arguments: ['C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-dfooigpo\\cp313t-win_amd64\\build\\venv\\Scripts\\delvewheel', 'repair', '-w', 'C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-dfooigpo\\cp313t-win_amd64\\repaired_wheel', 'C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-dfooigpo\\cp313t-win_amd64\\built_wheel\\mqt_core-3.2.1-cp313-cp313t-win_amd64.whl', '--namespace-pkg', 'mqt', '--ignore-existing']
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mqt-core
3
- Version: 3.1.0
3
+ Version: 3.2.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>
@@ -20,6 +20,7 @@ Classifier: Programming Language :: Python :: 3.10
20
20
  Classifier: Programming Language :: Python :: 3.11
21
21
  Classifier: Programming Language :: Python :: 3.12
22
22
  Classifier: Programming Language :: Python :: 3.13
23
+ Classifier: Programming Language :: Python :: 3.14
23
24
  Classifier: Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)
24
25
  Classifier: Typing :: Typed
25
26
  Project-URL: Homepage, https://github.com/munich-quantum-toolkit/core
@@ -55,7 +56,7 @@ Description-Content-Type: text/markdown
55
56
 
56
57
  # MQT Core - The Backbone of the Munich Quantum Toolkit (MQT)
57
58
 
58
- MQT Core is an open-source C++17 and Python library for quantum computing that forms the backbone of the quantum software tools developed as part of the [_Munich Quantum Toolkit (MQT)_](https://mqt.readthedocs.io).
59
+ MQT Core is an open-source C++20 and Python library for quantum computing that forms the backbone of the quantum software tools developed as part of the [_Munich Quantum Toolkit (MQT)_](https://mqt.readthedocs.io).
59
60
 
60
61
  <p align="center">
61
62
  <a href="https://mqt.readthedocs.io/projects/core">
@@ -93,7 +94,7 @@ Thank you to all the contributors who have helped make MQT Core a reality!
93
94
 
94
95
  ## Getting Started
95
96
 
96
- `mqt.core` is available via [PyPI](https://pypi.org/project/mqt.core/) for all major operating systems and supports Python 3.9 to 3.13.
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.
97
98
 
98
99
  ```console
99
100
  (.venv) $ pip install mqt.core
@@ -117,7 +118,7 @@ print(qc)
117
118
  ## System Requirements
118
119
 
119
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).
120
- However, the implementation should be compatible with any current C++ compiler supporting C++17 and a minimum CMake version of 3.24.
121
+ However, the implementation should be compatible with any current C++ compiler supporting C++20 and a minimum CMake version of 3.24.
121
122
 
122
123
  MQT Core relies on some external dependencies:
123
124
 
@@ -1,21 +1,21 @@
1
- mqt/core/dd.cp313t-win_amd64.pyd,sha256=oC_QMAYQN5b4wTb6FHKvXrghoYbqL0bcOAkfRwTEvFE,370176
2
- mqt/core/dd.pyi,sha256=9_IoalzBpMP9M92uQhl0HF-IskmhzCmnSIQqIAb3uFk,38388
1
+ mqt/core/dd.cp313t-win_amd64.pyd,sha256=hsFcn1woeWQjfzqptgR3Tfq829KdUjh6NZlTznnWSkc,357888
2
+ mqt/core/dd.pyi,sha256=LKocJL1n_P7Q5naSG1I-5kRDLURLFLE8DObj7UNj0_A,37807
3
3
  mqt/core/dd_evaluation.py,sha256=fCH9ZZdA4Qgpm-CUXJOfntvEntKqgDCjVKhYkb5evgE,13953
4
- mqt/core/ir.cp313t-win_amd64.pyd,sha256=BRwynSytRPHK6pdw6vjyQY1Udwm7Gfh8ea9MumalVsA,639488
4
+ mqt/core/ir.cp313t-win_amd64.pyd,sha256=C2qRQJnD_bNqbQwTvMZpXUIQYM-4ceXZPV_p7Ck7wkg,615424
5
5
  mqt/core/py.typed,sha256=husfEbE4Pj90ywT42RX6LTRKsGA05aTLQRjjxVotcH4,95
6
6
  mqt/core/_commands.py,sha256=6QK6KoYMucIyxwFQE1aDAA2FWPuNWj3gCO76PzaGj0A,1888
7
- mqt/core/_version.py,sha256=AH3GkS53I3XkOxH_QKmdQDaXOaym66lZkgKYYXlKk_I,532
7
+ mqt/core/_version.py,sha256=TQQ6honw-pG8S22_5DauGGXBpIxYKtjqoYxhrQ-hp8A,532
8
8
  mqt/core/_version.pyi,sha256=NRxzqx_-YD6DsAcy2DQ6DmBXMlWGo-9_2sZjXv80-xM,395
9
- mqt/core/__init__.py,sha256=bAuewOG04A4f88kw6yHgHdHwgm1lULn586U-X_U5YuE,3113
9
+ mqt/core/__init__.py,sha256=0fyxnrRjr82zz05gGHLDS9KB92S1dt3gnZj59ar4eNM,3113
10
10
  mqt/core/__main__.py,sha256=afcpODVbIMV2W_Q26VhQn-e-xHCl3PyUSHV_aOxTXCQ,1658
11
- mqt/core/bin/mqt-core-algorithms.dll,sha256=v_XDlfarwHdy2Fr3IyEInpS7LnhC57hHa9gJuNrE5x8,116224
12
- mqt/core/bin/mqt-core-circuit-optimizer.dll,sha256=M7TJk8jM9NNn0-Cas69q0uOS3ywPXzMAQhFqnlkquSY,174080
13
- mqt/core/bin/mqt-core-dd.dll,sha256=b4uZozNCO1giJLNwNZOj_aWw2Ql4SkcLfora12BTbb0,546816
14
- mqt/core/bin/mqt-core-ds.dll,sha256=1g7ChgRqvMehk4O8Z5ZVuAG9VwZ1Tk5Rw7d0HqigHvg,75776
15
- mqt/core/bin/mqt-core-ir.dll,sha256=JUqQMSRG7Ryrmos0x0haqpro9oI_euF8lyaQqpwQm9A,454656
16
- mqt/core/bin/mqt-core-na.dll,sha256=6H5HM4bhyiqk5HR5KRp8CafRlpp6t1bF72-ibh0R9x0,59904
17
- mqt/core/bin/mqt-core-qasm.dll,sha256=TGI_wd9cGza2SNMqOCmQNTVdrm8mIx43g05MzjMTP_k,608256
18
- mqt/core/bin/mqt-core-zx.dll,sha256=1PZXP-HbrTcsUDuahZ9cJva8ZtQVE5JozpgLrkOXgB4,231424
11
+ mqt/core/bin/mqt-core-algorithms.dll,sha256=5Fl9JfeqQaLU3ctviwbAtr5K2Mxs8cMr4aro11rziAI,116736
12
+ mqt/core/bin/mqt-core-circuit-optimizer.dll,sha256=k31YcQ5bk2G-_Plgm-i20BU7cUYV-OiwEOzqwZgSkw8,173568
13
+ mqt/core/bin/mqt-core-dd.dll,sha256=BDjutYOR_ZYxkWFEXgjApKAGqLA8AwLHrekXMIXDihU,545280
14
+ mqt/core/bin/mqt-core-ds.dll,sha256=OsXHQ0hiIR4YBhuTryMli7OfCLy3rfH626-FgCYZH4c,75264
15
+ mqt/core/bin/mqt-core-ir.dll,sha256=Nbkxj7O3E8mlMTeHSqRGec4C4JyaVFGENj4PMo5bIgg,452608
16
+ mqt/core/bin/mqt-core-na.dll,sha256=G6I9TgsP5QmaHYK4VJgi6NKuQcLmUsUPlKqb6wq53Mk,60416
17
+ mqt/core/bin/mqt-core-qasm.dll,sha256=bUClhqRNQv6shphIig7ylkmSdmoE5ukL3eqWvQDuLwQ,609792
18
+ mqt/core/bin/mqt-core-zx.dll,sha256=4jTHc84_qVe1EQfge06CuD8tbaI7wLj_vHN0ri7AEi4,230912
19
19
  mqt/core/include/mqt-core/algorithms/BernsteinVazirani.hpp,sha256=XyXVCqRdheDdBKDC5fM4QRn7LkjDX8XHf5uCQ9k1Gxk,1213
20
20
  mqt/core/include/mqt-core/algorithms/GHZState.hpp,sha256=AAFJmGyI7Q8fYI34ZWsAwlZmJV_OwYRHdTUs-jtVufk,425
21
21
  mqt/core/include/mqt-core/algorithms/Grover.hpp,sha256=3doZWNpMcmGuybkV6BtkOF5l3FN3IMH_kphxz_Yb4qc,965
@@ -209,13 +209,13 @@ mqt/core/include/mqt-core/boost/multiprecision/traits/std_integer_traits.hpp,sha
209
209
  mqt/core/include/mqt-core/boost/multiprecision/traits/transcendental_reduction_type.hpp,sha256=iM8PK72TVZ2tBSZCch27L7HbY_M6CQ7vPHnk_2slppo,621
210
210
  mqt/core/include/mqt-core/circuit_optimizer/CircuitOptimizer.hpp,sha256=-tsSd86O-_zj9DyoX_3yPiiLCP6FebYu8sz3Ex2nghc,3888
211
211
  mqt/core/include/mqt-core/circuit_optimizer/mqt_core_circuit_optimizer_export.h,sha256=ImtFedS9gjLSs7OPTNNDE00XO16vCoDR433d2cl7A3k,1519
212
- mqt/core/include/mqt-core/datastructures/DirectedAcyclicGraph.hpp,sha256=JhgH0jc6pFHtayi-6x8BBO7H1gnxOpyfgfGMdCRL2fU,3749
213
- mqt/core/include/mqt-core/datastructures/DirectedGraph.hpp,sha256=VWPZeiSQkXmH_sm9cS4M-lPLdHVa5lDEwCgv_xu2J3U,5319
212
+ mqt/core/include/mqt-core/datastructures/DirectedAcyclicGraph.hpp,sha256=9QioHjX5zcDJf4caousJTGewgRUpWASg3IA-QlQaIyQ,3677
213
+ mqt/core/include/mqt-core/datastructures/DirectedGraph.hpp,sha256=uQqpkzHw3wf_GIwPdskgNVEd8tVGLukvAofbMy4Y2J4,5233
214
214
  mqt/core/include/mqt-core/datastructures/DisjointSet.hpp,sha256=iNxYd782_uUemz_H7vFVe6BPaTi0SnyKtf_8LGccal0,1150
215
215
  mqt/core/include/mqt-core/datastructures/Layer.hpp,sha256=fsn3W7HhI7DsROFVjbCeeQbrIY1RSKB5QMIK1j0ecjo,5902
216
216
  mqt/core/include/mqt-core/datastructures/mqt_core_ds_export.h,sha256=wEJFgO0uDp5IpBJaqX2fh7c_dd3ASmAV48RWrf6sMjA,1159
217
217
  mqt/core/include/mqt-core/datastructures/SymmetricMatrix.hpp,sha256=SnXxOzIFwnGylYxDRfXXQu2lf8Bho4Cqu1HmHjTsa4A,1368
218
- mqt/core/include/mqt-core/datastructures/UndirectedGraph.hpp,sha256=bQ2lRzIIEfOPRpsxQ5kDCsuETpmLMJc5p4B0H4sGAR8,8036
218
+ mqt/core/include/mqt-core/datastructures/UndirectedGraph.hpp,sha256=1eLdon-dAvsZllRMcszz0MyZiADkdQ2msF2EKwlghww,7939
219
219
  mqt/core/include/mqt-core/dd/Approximation.hpp,sha256=O3HoT6WQfWJmOxhkBrkb7B6UrQDJqyFk6R-TefgWpCk,1388
220
220
  mqt/core/include/mqt-core/dd/CachedEdge.hpp,sha256=fA2pQt8skI_I8paEnNXq4Qh7mSBfyPs9DBrKl8WHgUQ,5694
221
221
  mqt/core/include/mqt-core/dd/Complex.hpp,sha256=Bu6JT8A7SKBEhVZFJA99OOs5xEUfGzjHIslE0Xt7gRg,5487
@@ -232,10 +232,10 @@ mqt/core/include/mqt-core/dd/GateMatrixDefinitions.hpp,sha256=N2x8nhQ-RwLbGFi9_i
232
232
  mqt/core/include/mqt-core/dd/LinkedListBase.hpp,sha256=2PqPw5YvTBNwm7YQMB-ymnX44Cs9CwI5N3QLcU9EI6I,1238
233
233
  mqt/core/include/mqt-core/dd/MemoryManager.hpp,sha256=xpsWSxivEz8GRo36ePMy3_FmHeBuu0xFalMmtZZloJ8,6993
234
234
  mqt/core/include/mqt-core/dd/mqt_core_dd_export.h,sha256=mWZABiNpVg1zXtu0Qk9HPQK1ZnidNnB_tI6WLNS9Zi4,1159
235
- mqt/core/include/mqt-core/dd/Node.hpp,sha256=0U1tXdeJVIiY0LL5OVrX3fwc8JnxwYW51oD6TolMYvk,7558
235
+ mqt/core/include/mqt-core/dd/Node.hpp,sha256=o2Osql_1IIwj-Cx9joEDEKVc4YIpbXOpN8_CDsYIPM4,7581
236
236
  mqt/core/include/mqt-core/dd/NoiseFunctionality.hpp,sha256=ySDc69kW-rEJwGWms4wHUJUcX8CC-WPVb4utHit6pqo,4865
237
237
  mqt/core/include/mqt-core/dd/Operations.hpp,sha256=_LwTBONmqiFEKkCPFnaa9XVW8uyShoUFD2-jJqHIRw8,11255
238
- mqt/core/include/mqt-core/dd/Package.hpp,sha256=d0qOdlcjpOzr-ZxnD7f6vbRgzsPLAyuvBkL8QV4JLEY,74199
238
+ mqt/core/include/mqt-core/dd/Package.hpp,sha256=uAvz69vqowDQnkDDSwUoW_5s6KvaPeKexJJVOs1ayng,74151
239
239
  mqt/core/include/mqt-core/dd/Package_fwd.hpp,sha256=tZXPFjsIsIxzEV7s9kwip97Q54IlC6ffGkNMR1b3CGE,454
240
240
  mqt/core/include/mqt-core/dd/RealNumber.hpp,sha256=k4vUoPyWn2js2VtED4gU8Y6NNSHnPMJuuwfs4ktYPHc,9468
241
241
  mqt/core/include/mqt-core/dd/RealNumberUniqueTable.hpp,sha256=cglroBz9IXE13HWWHVAzNBQQDQvcL3pr97aybg_65zQ,8462
@@ -258,7 +258,7 @@ mqt/core/include/mqt-core/ir/operations/AodOperation.hpp,sha256=1K0oycjyKGtW9lgb
258
258
  mqt/core/include/mqt-core/ir/operations/ClassicControlledOperation.hpp,sha256=XNCwykUjpmOK7GU_DvMbzKeEi45DhGvj4l6zI4sRvs4,4721
259
259
  mqt/core/include/mqt-core/ir/operations/CompoundOperation.hpp,sha256=ZujQKQX4pd69jbYNbr8BHHLktwHrw-Xlrhicp9pI5XY,7533
260
260
  mqt/core/include/mqt-core/ir/operations/Control.hpp,sha256=6m6HTr0nwOE4sgpeYLvpccGRqyUpxNkswZo3M0wcVcM,4249
261
- mqt/core/include/mqt-core/ir/operations/Expression.hpp,sha256=eFfn3xfPPvandblwq7OT3RQjvH8YDj6h5c1-dDHr7S8,26454
261
+ mqt/core/include/mqt-core/ir/operations/Expression.hpp,sha256=gO-waNndEgvyAOvDRwYT_QJJ6FIc8RvYnUANhd1Lo6k,26438
262
262
  mqt/core/include/mqt-core/ir/operations/NonUnitaryOperation.hpp,sha256=4UTzigpbVn-ygLsawT_cO9U4he7OzAB8qa3Qn8CNHnQ,3939
263
263
  mqt/core/include/mqt-core/ir/operations/Operation.hpp,sha256=83Fdexd_fmYEdRwVfY0T2LliCcRcp-qDJl8jYwNS2y8,7900
264
264
  mqt/core/include/mqt-core/ir/operations/OpType.hpp,sha256=fJ-7romCkIbnM-GprVBoVja3HWzyrUm44lmMZHkOxKI,2316
@@ -306,18 +306,18 @@ mqt/core/include/mqt-core/zx/Simplify.hpp,sha256=LTCEwAZgw5HSSSga3kjAEmIHE_fQqeC
306
306
  mqt/core/include/mqt-core/zx/Utils.hpp,sha256=daakVxoqPgaPG5Y48BKXplXVCEKce3isLzUHWSBrgmA,6632
307
307
  mqt/core/include/mqt-core/zx/ZXDefinitions.hpp,sha256=fNf_20tI-6uCuEIHtWOzGFuomlmrC2na5n_RWC4w1hc,2367
308
308
  mqt/core/include/mqt-core/zx/ZXDiagram.hpp,sha256=QDIyjj9UNQ0dK3RVw9q4ZHczyYCc2nRz3XPWvTfa5nw,14651
309
- mqt/core/ir/operations.pyi,sha256=2hxPlRg0ItcxIlRUIpjobq3sGS_pnztwt6q4BtQ8kCQ,28917
309
+ mqt/core/ir/operations.pyi,sha256=fpbUBq6vbQFmL6mVvZnlH3ZQ8zTl_2fY-Su5ZgntJKA,27097
310
310
  mqt/core/ir/registers.pyi,sha256=0w_7LbvAMvL_d3w3A704RZdEFGg-w3_evtAXeSZbuCM,3057
311
311
  mqt/core/ir/symbolic.pyi,sha256=oS99apV6PliKFLMLwXdqmmed53lTqgQpMuxxBBweQHQ,5580
312
312
  mqt/core/ir/__init__.pyi,sha256=4NRX3DRrKUq82-CDpEKgJnHKJRq5LpDbMnDzgv8J4Ws,63239
313
- mqt/core/lib/mqt-core-algorithms.lib,sha256=E5NzobsnLefDs7Jidca7XtnZQSSM452xYek9T5LbCeU,127856
314
- mqt/core/lib/mqt-core-circuit-optimizer.lib,sha256=3AIttkycJK0hTT4ftF4-QVkwLPSXMTL_hwvIkmhVTdY,291634
315
- mqt/core/lib/mqt-core-dd.lib,sha256=Db1vZgRm8rPFuja0EtZbSlpXUNI3pUJzDRxO4cjGmr4,1081086
316
- mqt/core/lib/mqt-core-ds.lib,sha256=RrUPhYUVPBbv2oYq4j3b2UAtJnNE_3n_L0TGthMqvZw,130056
317
- mqt/core/lib/mqt-core-ir.lib,sha256=48S09ch2RuWkihzUsOEVVlYJbRB6ECEw0pfbFTRQvbw,863456
318
- mqt/core/lib/mqt-core-na.lib,sha256=wr5mHT5QH9N71rE4ai26fFNtKECJzTJViSw3Cs4lUxU,73102
319
- mqt/core/lib/mqt-core-qasm.lib,sha256=xaQ4tOInF947uHLHaT0oMQlcVRU6VoPyqohfRd2I6bY,1038742
320
- mqt/core/lib/mqt-core-zx.lib,sha256=dAZDp27RA7FujWhWxt_OQNx9lcl8zoL2iN3gJqGy-Hc,262592
313
+ mqt/core/lib/mqt-core-algorithms.lib,sha256=DPp9anfm_fnMyxRf73Q-gyD06AOn2JbUOM6ozKG-VV0,130150
314
+ mqt/core/lib/mqt-core-circuit-optimizer.lib,sha256=jE79-94bJBIE-q_jX_SfpvIlVzdX5lh6hFcawkjl1kc,293808
315
+ mqt/core/lib/mqt-core-dd.lib,sha256=ezTp_s1G_QgwmjS64WEwNXg8kmVNuxD4vVR4lgABtkA,1083736
316
+ mqt/core/lib/mqt-core-ds.lib,sha256=ZIqLf0TiJYFoVU9yWGsbCwipcu9ltTDiDjIzmQf-EWo,130446
317
+ mqt/core/lib/mqt-core-ir.lib,sha256=6__pjrK91LUMhcvOqKEDa3HGTEW-wC5hhcfiziy9_ak,855984
318
+ mqt/core/lib/mqt-core-na.lib,sha256=qrhvBipgE6dj78kJfTXKKIk3VMA52wpw342zwJtNzZI,74466
319
+ mqt/core/lib/mqt-core-qasm.lib,sha256=E7ruLZnqOjajFxLagv8Uim4uV7Ixtm2uIvWv4QvjtX4,1043912
320
+ mqt/core/lib/mqt-core-zx.lib,sha256=q04Gevw67Z7zoC9RL3bAbTLEqhQ5aVlw7QbD-VKJEfM,263248
321
321
  mqt/core/plugins/__init__.py,sha256=lhizMH2ZxsZ0WgmHe3gCSBjwYz15Qxk7lT1u95yCSl0,256
322
322
  mqt/core/plugins/qiskit/mqt_to_qiskit.py,sha256=jvzJXdR8acPSOlxR3N4jU8n2yDQ1jfj2YHfbEa5bkUc,12098
323
323
  mqt/core/plugins/qiskit/qiskit_to_mqt.py,sha256=iX1TjiU_iaBVCKwGdshokyTXWgmmiSgw-9EiMLv2-3w,14142
@@ -325,19 +325,19 @@ mqt/core/plugins/qiskit/__init__.py,sha256=dO9JctQj6loeWPO1cfgjUxKHgunA4JMKZDAHT
325
325
  mqt/core/share/cmake/mqt-core/AddMQTPythonBinding.cmake,sha256=jRsHD2FM9sNw1ZPysBy3rbFshJbXWWNlvB-9Jz4iXpA,1716
326
326
  mqt/core/share/cmake/mqt-core/Cache.cmake,sha256=PQ6waFO-oWqD062wrJueZNMlCdjtCZn-kABRmjFIYDU,1084
327
327
  mqt/core/share/cmake/mqt-core/FindGMP.cmake,sha256=GvBOMi1qei3a46g0EaGpprzGp9ps378qAPrxbCnzsco,3158
328
- mqt/core/share/cmake/mqt-core/mqt-core-config-version.cmake,sha256=g-cfjrAWykuNc7AKMTyMa3VZPP3c4J3aXptVxlqxLN8,3760
328
+ mqt/core/share/cmake/mqt-core/mqt-core-config-version.cmake,sha256=5uWTkYAgTTYRQmjDfH4LAlLV0Twe1IHiMEI1mYfvrMY,3760
329
329
  mqt/core/share/cmake/mqt-core/mqt-core-config.cmake,sha256=InZRhVzU2des2J4GMZt1rl6ZNm575B1_sBJg0TF2JcE,1720
330
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=pmqbYTzP2G2ofnUaZZXt2QVmIY1tPMb7FFk-03wft8I,30835
331
+ mqt/core/share/cmake/mqt-core/mqt-core-targets.cmake,sha256=l5gjZRpcItft5IQ1OadS9qrJAu_8UArQI0RhmAxh4Pc,30835
332
332
  mqt/core/share/cmake/mqt-core/PackageAddTest.cmake,sha256=zrzUwnc2Hm9pVoe203DSl4Uyxl8zJNAbQxO2LBTzIUo,1840
333
333
  mqt/core/share/cmake/mqt-core/PreventInSourceBuilds.cmake,sha256=a_bKW96S3wbdb4Fu0WFdKpd19lx4zDBhMiDWY5PyCj4,954
334
334
  mqt/core/share/cmake/mqt-core/StandardProjectSettings.cmake,sha256=qrsK6mTrfOx5-ZWbKq6i60zIdu5p1APUVWcxXmEDq8w,3110
335
335
  mqt/core/_compat/typing.py,sha256=Ug5WlI-rVB95uG27tD9tI9ZJ1FrXXlOj8uVLkwEHR-A,664
336
336
  mqt/core/_compat/__init__.py,sha256=AMtqqQ2XqcETMLOQzFsEKB5999ktwEjt66FVwq4zhDU,282
337
- mqt_core-3.1.0.dist-info/DELVEWHEEL,sha256=kdF7UJkKFzTPlh8spSDM_XfUHDmNs9b0QfLgLmn-VLc,452
338
- mqt_core-3.1.0.dist-info/entry_points.txt,sha256=mCvuLe8oe3Frh1UMVdRkE1ITs1tHq1K_GyK8GbgAthg,107
339
- mqt_core-3.1.0.dist-info/METADATA,sha256=B59E-D7o1xPEusXk13SCt0ZbUHHNWgZr2JLjqbCOJkM,9119
340
- mqt_core-3.1.0.dist-info/RECORD,,
341
- mqt_core-3.1.0.dist-info/WHEEL,sha256=oaVTHmKXZyuvZQME0ieQq_X-rB5N7H2W6TpajjXbGYk,107
342
- mqt_core-3.1.0.dist-info/licenses/LICENSE.md,sha256=T2LcLM4fquxU4Fe7TUQ81wRy0o97DrNkLIfSJpujQqA,1174
337
+ mqt_core-3.2.1.dist-info/DELVEWHEEL,sha256=k8cwruaayHX8Y9ufyg5aTuq8fsCaLvkHhimv26w9XFE,452
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=oaVTHmKXZyuvZQME0ieQq_X-rB5N7H2W6TpajjXbGYk,107
342
+ mqt_core-3.2.1.dist-info/licenses/LICENSE.md,sha256=T2LcLM4fquxU4Fe7TUQ81wRy0o97DrNkLIfSJpujQqA,1174
343
343
  mqt_core.libs/msvcp140.dll,sha256=pMIim9wqKmMKzcCVtNhgCOXD47x3cxdDVPPaT1vrnN4,575056
@@ -1,2 +0,0 @@
1
- Version: 1.10.1
2
- Arguments: ['C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-horcz0kp\\cp313t-win_amd64\\build\\venv\\Scripts\\delvewheel', 'repair', '-w', 'C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-horcz0kp\\cp313t-win_amd64\\repaired_wheel', 'C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-horcz0kp\\cp313t-win_amd64\\built_wheel\\mqt_core-3.1.0-cp313-cp313t-win_amd64.whl', '--namespace-pkg', 'mqt', '--ignore-existing']