Skip to content

Commit 671fd04

Browse files
authored
feat(mitigation): add TwoQubitPauliTwirlPass class (#17)
1 parent 35ab59f commit 671fd04

File tree

4 files changed

+906
-0
lines changed

4 files changed

+906
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# This code is part of Qiskit.
2+
#
3+
# (C) Copyright IBM 2024.
4+
#
5+
# This code is licensed under the Apache License, Version 2.0. You may
6+
# obtain a copy of this license in the LICENSE.txt file in the root directory
7+
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
8+
#
9+
# Any modifications or derivative works of this code must retain this
10+
# copyright notice, and modified files need to carry a notice indicating
11+
# that they have been altered from the originals.
12+
13+
"""Error mitigation tools and techniques."""
14+
15+
from ._twirling import TwoQubitPauliTwirlPass
16+
17+
__all__ = [
18+
"TwoQubitPauliTwirlPass",
19+
]

0 commit comments

Comments
 (0)