Skip to content

Commit 56409ba

Browse files
committed
🩹 Update Python stubs
Signed-off-by: Lukas Burgholzer <burgholzer@me.com>
1 parent 93854fd commit 56409ba

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

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)