Skip to content

Commit eb25270

Browse files
committed
Update to 3.5.1
1 parent 2ed4ae0 commit eb25270

5 files changed

Lines changed: 42 additions & 54 deletions

File tree

cmake/ExternalDependencies.cmake

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ if(BUILD_MQT_DDSIM_BINDINGS)
3333
endif()
3434

3535
# cmake-format: off
36-
set(MQT_CORE_MINIMUM_VERSION 3.5.0
36+
set(MQT_CORE_MINIMUM_VERSION 3.5.1
3737
CACHE STRING "MQT Core minimum version")
38-
set(MQT_CORE_VERSION 3.5.0
38+
set(MQT_CORE_VERSION 3.5.1
3939
CACHE STRING "MQT Core version")
40-
set(MQT_CORE_REV "848371e7fd5a81c906e8f2b9a1983cd89ffa4990"
40+
set(MQT_CORE_REV "3c0ba57083ca797bcdca24e8813ba46acf5da5f5"
4141
CACHE STRING "MQT Core identifier (tag, branch or commit hash)")
4242
set(MQT_CORE_REPO_OWNER "munich-quantum-toolkit"
4343
CACHE STRING "MQT Core repository owner (change when using a fork)")

include/PathSimulator.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#include <list>
2323
#include <map>
2424
#include <memory>
25-
#include <nlohmann/json_fwd.hpp>
25+
#include <nlohmann/json.hpp>
2626
#include <stdexcept>
2727
#include <string>
2828
#include <taskflow/core/async.hpp> // IWYU pragma: keep

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ requires = [
1111
"nanobind~=2.12.0",
1212
"scikit-build-core>=0.12.2",
1313
"setuptools-scm>=9.2.2",
14-
"mqt.core~=3.5.0",
14+
"mqt.core~=3.5.1",
1515
]
1616
build-backend = "scikit_build_core.build"
1717

@@ -48,7 +48,7 @@ classifiers = [
4848
]
4949
requires-python = ">=3.10"
5050
dependencies = [
51-
"mqt.core[qiskit]~=3.5.0",
51+
"mqt.core[qiskit]~=3.5.1",
5252
"qiskit>=1.1",
5353
]
5454
dynamic = ["version"]
@@ -340,7 +340,7 @@ build = [
340340
"nanobind~=2.12.0",
341341
"scikit-build-core>=0.12.2",
342342
"setuptools-scm>=9.2.2",
343-
"mqt.core~=3.5.0",
343+
"mqt.core~=3.5.1",
344344
]
345345
docs = [
346346
"breathe>=4.36.0",

python/mqt/ddsim/pyddsim.pyi

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ class StochasticNoiseSimulator:
6262
seed: int = -1,
6363
noise_effects: str = "APD",
6464
noise_probability: float = 0.01,
65-
amp_damping_probability: float = 0.02,
66-
multi_qubit_gate_factor: float | None = 2,
65+
amp_damping_probability: float | None = 0.02,
66+
multi_qubit_gate_factor: float = 2,
6767
) -> None: ...
6868
def get_number_of_qubits(self) -> int:
6969
"""Get the number of qubits."""
@@ -102,8 +102,8 @@ class DeterministicNoiseSimulator:
102102
seed: int = -1,
103103
noise_effects: str = "APD",
104104
noise_probability: float = 0.01,
105-
amp_damping_probability: float = 0.02,
106-
multi_qubit_gate_factor: float | None = 2,
105+
amp_damping_probability: float | None = 0.02,
106+
multi_qubit_gate_factor: float = 2,
107107
) -> None: ...
108108
def get_number_of_qubits(self) -> int:
109109
"""Get the number of qubits."""

0 commit comments

Comments
 (0)