mqt-core 3.1.0__cp310-cp310-win_amd64.whl → 3.2.0__cp310-cp310-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.
- mqt/core/__init__.py +3 -3
- mqt/core/_version.py +2 -2
- mqt/core/bin/mqt-core-algorithms.dll +0 -0
- mqt/core/bin/mqt-core-circuit-optimizer.dll +0 -0
- mqt/core/bin/mqt-core-dd.dll +0 -0
- mqt/core/bin/mqt-core-ds.dll +0 -0
- mqt/core/bin/mqt-core-ir.dll +0 -0
- mqt/core/bin/mqt-core-na.dll +0 -0
- mqt/core/bin/mqt-core-qasm.dll +0 -0
- mqt/core/bin/mqt-core-zx.dll +0 -0
- mqt/core/dd.cp310-win_amd64.pyd +0 -0
- mqt/core/dd.pyi +9 -22
- mqt/core/include/mqt-core/datastructures/DirectedAcyclicGraph.hpp +4 -4
- mqt/core/include/mqt-core/datastructures/DirectedGraph.hpp +7 -7
- mqt/core/include/mqt-core/datastructures/UndirectedGraph.hpp +8 -8
- mqt/core/include/mqt-core/dd/Node.hpp +1 -1
- mqt/core/include/mqt-core/dd/Package.hpp +3 -3
- mqt/core/include/mqt-core/ir/operations/Expression.hpp +1 -1
- mqt/core/ir/operations.pyi +58 -86
- mqt/core/ir.cp310-win_amd64.pyd +0 -0
- mqt/core/lib/mqt-core-algorithms.lib +0 -0
- mqt/core/lib/mqt-core-circuit-optimizer.lib +0 -0
- mqt/core/lib/mqt-core-dd.lib +0 -0
- mqt/core/lib/mqt-core-ds.lib +0 -0
- mqt/core/lib/mqt-core-ir.lib +0 -0
- mqt/core/lib/mqt-core-na.lib +0 -0
- mqt/core/lib/mqt-core-qasm.lib +0 -0
- mqt/core/lib/mqt-core-zx.lib +0 -0
- mqt/core/share/cmake/mqt-core/mqt-core-config-version.cmake +3 -3
- mqt/core/share/cmake/mqt-core/mqt-core-targets.cmake +1 -1
- mqt_core-3.2.0.dist-info/DELVEWHEEL +2 -0
- {mqt_core-3.1.0.dist-info → mqt_core-3.2.0.dist-info}/METADATA +5 -4
- {mqt_core-3.1.0.dist-info → mqt_core-3.2.0.dist-info}/RECORD +36 -36
- mqt_core-3.1.0.dist-info/DELVEWHEEL +0 -2
- {mqt_core-3.1.0.dist-info → mqt_core-3.2.0.dist-info}/WHEEL +0 -0
- {mqt_core-3.1.0.dist-info → mqt_core-3.2.0.dist-info}/entry_points.txt +0 -0
- {mqt_core-3.1.0.dist-info → mqt_core-3.2.0.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
|
|
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
|
-
|
|
22
|
-
del
|
|
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
|
Binary file
|
|
Binary file
|
mqt/core/bin/mqt-core-dd.dll
CHANGED
|
Binary file
|
mqt/core/bin/mqt-core-ds.dll
CHANGED
|
Binary file
|
mqt/core/bin/mqt-core-ir.dll
CHANGED
|
Binary file
|
mqt/core/bin/mqt-core-na.dll
CHANGED
|
Binary file
|
mqt/core/bin/mqt-core-qasm.dll
CHANGED
|
Binary file
|
mqt/core/bin/mqt-core-zx.dll
CHANGED
|
Binary file
|
mqt/core/dd.cp310-win_amd64.pyd
CHANGED
|
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
|
|
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
|
-
|
|
961
|
-
zero: ClassVar[BasisStates]
|
|
961
|
+
zero = ...
|
|
962
962
|
r"""The computational basis state :math:`|0\rangle`."""
|
|
963
|
-
one
|
|
963
|
+
one = ...
|
|
964
964
|
r"""The computational basis state :math:`|1\rangle`."""
|
|
965
|
-
plus
|
|
965
|
+
plus = ...
|
|
966
966
|
r"""The superposition state :math:`|+\rangle = \frac{1}{\sqrt{2}}(|0\rangle + |1\rangle)`."""
|
|
967
|
-
minus
|
|
967
|
+
minus = ...
|
|
968
968
|
r"""The superposition state :math:`|-\rangle = \frac{1}{\sqrt{2}}(|0\rangle - |1\rangle)`."""
|
|
969
|
-
left
|
|
969
|
+
left = ...
|
|
970
970
|
r"""The rotational superposition state :math:`|L\rangle = \frac{1}{\sqrt{2}}(|0\rangle + i|1\rangle)`."""
|
|
971
|
-
right
|
|
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.
|
|
41
|
+
if (!this->mapping.contains(u)) {
|
|
42
42
|
addVertex(u);
|
|
43
43
|
}
|
|
44
|
-
if (this->mapping.
|
|
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.
|
|
65
|
+
if (!this->mapping.contains(u)) {
|
|
66
66
|
throw std::invalid_argument("Vertex u not in graph.");
|
|
67
67
|
}
|
|
68
|
-
if (this->mapping.
|
|
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.
|
|
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.
|
|
78
|
+
if (!mapping.contains(u)) {
|
|
79
79
|
addVertex(u);
|
|
80
80
|
}
|
|
81
|
-
if (mapping.
|
|
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.
|
|
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.
|
|
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());
|
|
@@ -119,12 +119,12 @@ public:
|
|
|
119
119
|
});
|
|
120
120
|
}
|
|
121
121
|
[[nodiscard]] auto isEdge(const V& u, const V& v) const -> bool {
|
|
122
|
-
if (mapping.
|
|
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.
|
|
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.
|
|
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.
|
|
83
|
+
if (!mapping.contains(u)) {
|
|
84
84
|
addVertex(u);
|
|
85
85
|
}
|
|
86
|
-
if (mapping.
|
|
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.
|
|
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.
|
|
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.
|
|
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());
|
|
@@ -182,12 +182,12 @@ public:
|
|
|
182
182
|
});
|
|
183
183
|
}
|
|
184
184
|
[[nodiscard]] auto isAdjacent(const V& u, const V& v) const -> bool {
|
|
185
|
-
if (mapping.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
1855
|
+
if (!mappedNode.contains(currentEdge->p)) {
|
|
1856
1856
|
currentEdge = nullptr;
|
|
1857
1857
|
continue;
|
|
1858
1858
|
}
|
mqt/core/ir/operations.pyi
CHANGED
|
@@ -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
|
|
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
|
-
"""
|
|
37
|
+
class Type(Enum):
|
|
38
|
+
"""Enumeration of control types.
|
|
38
39
|
|
|
39
|
-
|
|
40
|
-
|
|
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
|
|
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
|
-
"""
|
|
74
|
+
class OpType(Enum):
|
|
75
|
+
"""Enumeration of operation types."""
|
|
86
76
|
|
|
87
|
-
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
-
"""
|
|
882
|
+
class ComparisonKind(Enum):
|
|
883
|
+
"""Enumeration of comparison types for classic-controlled operations."""
|
|
911
884
|
|
|
912
|
-
|
|
913
|
-
eq: ClassVar[ComparisonKind]
|
|
885
|
+
eq = ...
|
|
914
886
|
"""Equality comparison."""
|
|
915
|
-
neq
|
|
887
|
+
neq = ...
|
|
916
888
|
"""Inequality comparison."""
|
|
917
|
-
lt
|
|
889
|
+
lt = ...
|
|
918
890
|
"""Less than comparison."""
|
|
919
|
-
leq
|
|
891
|
+
leq = ...
|
|
920
892
|
"""Less than or equal comparison."""
|
|
921
|
-
gt
|
|
893
|
+
gt = ...
|
|
922
894
|
"""Greater than comparison."""
|
|
923
|
-
geq
|
|
895
|
+
geq = ...
|
|
924
896
|
"""Greater than or equal comparison."""
|
|
925
897
|
|
|
926
898
|
class ClassicControlledOperation(Operation):
|
mqt/core/ir.cp310-win_amd64.pyd
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
mqt/core/lib/mqt-core-dd.lib
CHANGED
|
Binary file
|
mqt/core/lib/mqt-core-ds.lib
CHANGED
|
Binary file
|
mqt/core/lib/mqt-core-ir.lib
CHANGED
|
Binary file
|
mqt/core/lib/mqt-core-na.lib
CHANGED
|
Binary file
|
mqt/core/lib/mqt-core-qasm.lib
CHANGED
|
Binary file
|
mqt/core/lib/mqt-core-zx.lib
CHANGED
|
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.
|
|
13
|
+
set(PACKAGE_VERSION "3.2.0")
|
|
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.
|
|
19
|
+
if("3.2.0" 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.
|
|
30
|
+
set(CVF_VERSION_MAJOR "3.2.0")
|
|
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 "
|
|
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-9nqpxncg\\cp310-win_amd64\\build\\venv\\Scripts\\delvewheel', 'repair', '-w', 'C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-9nqpxncg\\cp310-win_amd64\\repaired_wheel', 'C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-9nqpxncg\\cp310-win_amd64\\built_wheel\\mqt_core-3.2.0-cp310-cp310-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.
|
|
3
|
+
Version: 3.2.0
|
|
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++
|
|
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.
|
|
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++
|
|
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.cp310-win_amd64.pyd,sha256=
|
|
2
|
-
mqt/core/dd.pyi,sha256=
|
|
1
|
+
mqt/core/dd.cp310-win_amd64.pyd,sha256=sUErhJ3kacnOjNJQmlU84IELxCd_aYb0rMCKEEoAa10,315392
|
|
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.cp310-win_amd64.pyd,sha256=
|
|
4
|
+
mqt/core/ir.cp310-win_amd64.pyd,sha256=kyV13sDQHgBr7KY_76jvhxeff_aQq_WVOvspWGqSJ3Q,523776
|
|
5
5
|
mqt/core/py.typed,sha256=husfEbE4Pj90ywT42RX6LTRKsGA05aTLQRjjxVotcH4,95
|
|
6
6
|
mqt/core/_commands.py,sha256=6QK6KoYMucIyxwFQE1aDAA2FWPuNWj3gCO76PzaGj0A,1888
|
|
7
|
-
mqt/core/_version.py,sha256=
|
|
7
|
+
mqt/core/_version.py,sha256=c4yvOPRvY3QrwlPt-6S9j8pRyOG3bUmVkLSL7_jwHwQ,532
|
|
8
8
|
mqt/core/_version.pyi,sha256=NRxzqx_-YD6DsAcy2DQ6DmBXMlWGo-9_2sZjXv80-xM,395
|
|
9
|
-
mqt/core/__init__.py,sha256=
|
|
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=
|
|
12
|
-
mqt/core/bin/mqt-core-circuit-optimizer.dll,sha256=
|
|
13
|
-
mqt/core/bin/mqt-core-dd.dll,sha256=
|
|
14
|
-
mqt/core/bin/mqt-core-ds.dll,sha256=
|
|
15
|
-
mqt/core/bin/mqt-core-ir.dll,sha256=
|
|
16
|
-
mqt/core/bin/mqt-core-na.dll,sha256=
|
|
17
|
-
mqt/core/bin/mqt-core-qasm.dll,sha256=
|
|
18
|
-
mqt/core/bin/mqt-core-zx.dll,sha256=
|
|
11
|
+
mqt/core/bin/mqt-core-algorithms.dll,sha256=phGUKdm5hyjPDp7NEBy23z_kKqNnF1aFPkeQ-ygCIgM,116736
|
|
12
|
+
mqt/core/bin/mqt-core-circuit-optimizer.dll,sha256=pmuCpf3sdCbG41IUUKWOZF2e6XRVUNjG2rf3nF1U2gE,173568
|
|
13
|
+
mqt/core/bin/mqt-core-dd.dll,sha256=B8dhcicMBtC7-5_S6DWi3xYbQT7EX5ppG-FE00BEGQI,545280
|
|
14
|
+
mqt/core/bin/mqt-core-ds.dll,sha256=FMGQIaV9Q6Hh-E89fZWxyXTrjo1NrctWc3He91GF2e8,75264
|
|
15
|
+
mqt/core/bin/mqt-core-ir.dll,sha256=nEJHW0cIWwDGuyXBk6Q6xFsEfENmbrW3QN3m7gIK_Z4,452608
|
|
16
|
+
mqt/core/bin/mqt-core-na.dll,sha256=gFcKdKw3HTVawZ5E5BPvYPwhlh9Z2ck4eJKe_X9GpGY,60416
|
|
17
|
+
mqt/core/bin/mqt-core-qasm.dll,sha256=moxnLtZr07_5EKpjz7dkd1wPzoBHGosokEhpM-1-Exg,609792
|
|
18
|
+
mqt/core/bin/mqt-core-zx.dll,sha256=UOEQBYpBej0pWqTHUbCHeqNjU0jw64RKopFxPKfiWsE,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=
|
|
213
|
-
mqt/core/include/mqt-core/datastructures/DirectedGraph.hpp,sha256=
|
|
212
|
+
mqt/core/include/mqt-core/datastructures/DirectedAcyclicGraph.hpp,sha256=9QioHjX5zcDJf4caousJTGewgRUpWASg3IA-QlQaIyQ,3677
|
|
213
|
+
mqt/core/include/mqt-core/datastructures/DirectedGraph.hpp,sha256=n06s52oObFTNiOP_1lDju60GdfOWKiU2ex2nrHc2G-o,5234
|
|
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
|
|
218
|
+
mqt/core/include/mqt-core/datastructures/UndirectedGraph.hpp,sha256=-7ZQJOvYxtW7auL7SLUMwt-qZ0hUq5v4crvAP3HrUOM,7940
|
|
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=
|
|
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=
|
|
238
|
+
mqt/core/include/mqt-core/dd/Package.hpp,sha256=FVN5f9mPrGkrSDsJJ4sdhKn705DaoTbdhSH5q3HKLqo,74152
|
|
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=
|
|
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=
|
|
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=
|
|
314
|
-
mqt/core/lib/mqt-core-circuit-optimizer.lib,sha256=
|
|
315
|
-
mqt/core/lib/mqt-core-dd.lib,sha256=
|
|
316
|
-
mqt/core/lib/mqt-core-ds.lib,sha256=
|
|
317
|
-
mqt/core/lib/mqt-core-ir.lib,sha256=
|
|
318
|
-
mqt/core/lib/mqt-core-na.lib,sha256=
|
|
319
|
-
mqt/core/lib/mqt-core-qasm.lib,sha256=
|
|
320
|
-
mqt/core/lib/mqt-core-zx.lib,sha256=
|
|
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=
|
|
328
|
+
mqt/core/share/cmake/mqt-core/mqt-core-config-version.cmake,sha256=m1wP7fbEuA2JFnXiGJ8emgH00MFnKCJwKgCgo9DJsDU,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=
|
|
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.
|
|
338
|
-
mqt_core-3.
|
|
339
|
-
mqt_core-3.
|
|
340
|
-
mqt_core-3.
|
|
341
|
-
mqt_core-3.
|
|
342
|
-
mqt_core-3.
|
|
337
|
+
mqt_core-3.2.0.dist-info/DELVEWHEEL,sha256=6Bj-pLVjCDy71qjfGvz3idBqG-0nJ1gQUmjkLu5SJTA,448
|
|
338
|
+
mqt_core-3.2.0.dist-info/entry_points.txt,sha256=mCvuLe8oe3Frh1UMVdRkE1ITs1tHq1K_GyK8GbgAthg,107
|
|
339
|
+
mqt_core-3.2.0.dist-info/METADATA,sha256=14fv9tfn1JPBoobGc4q0KPWwSYUwEp69sDJpyZt9fr8,9170
|
|
340
|
+
mqt_core-3.2.0.dist-info/RECORD,,
|
|
341
|
+
mqt_core-3.2.0.dist-info/WHEEL,sha256=dD8EM_eb3pZmEbkvPEPxqrbrFtr3mwlecsbXbps1z7Y,106
|
|
342
|
+
mqt_core-3.2.0.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\\cp310-win_amd64\\build\\venv\\Scripts\\delvewheel', 'repair', '-w', 'C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-horcz0kp\\cp310-win_amd64\\repaired_wheel', 'C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-horcz0kp\\cp310-win_amd64\\built_wheel\\mqt_core-3.1.0-cp310-cp310-win_amd64.whl', '--namespace-pkg', 'mqt', '--ignore-existing']
|
|
File without changes
|
|
File without changes
|
|
File without changes
|