File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -33,11 +33,11 @@ if(BUILD_MQT_DDSIM_BINDINGS)
3333endif ()
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)" )
4242set (MQT_CORE_REPO_OWNER "munich-quantum-toolkit"
4343 CACHE STRING "MQT Core repository owner (change when using a fork)" )
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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]
1616build-backend = " scikit_build_core.build"
1717
@@ -48,7 +48,7 @@ classifiers = [
4848]
4949requires-python = " >=3.10"
5050dependencies = [
51- " mqt.core[qiskit]~=3.5.0 " ,
51+ " mqt.core[qiskit]~=3.5.1 " ,
5252 " qiskit>=1.1" ,
5353]
5454dynamic = [" 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]
345345docs = [
346346 " breathe>=4.36.0" ,
Original file line number Diff line number Diff 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."""
You can’t perform that action at this time.
0 commit comments