correct defaults for L

This commit is contained in:
Valentin Boettcher 2022-11-28 17:26:03 -05:00
parent 9ba50dd25f
commit 7ebe59d531
No known key found for this signature in database
GPG key ID: E034E12B7AF56ACE

View file

@ -143,7 +143,7 @@ class OttoEngine(QubitModelMutliBath):
""" """
L: tuple[np.ndarray, np.ndarray] = field( L: tuple[np.ndarray, np.ndarray] = field(
default_factory=lambda: tuple([1 / 2 * (qt.sigmax().full())] * 2) # type: ignore default_factory=lambda: tuple([(1 / 2 * (qt.sigmax().full())), (1 / 2 * (qt.sigmax().full()))]) # type: ignore
) )
"""The bare coupling operators to the two baths.""" """The bare coupling operators to the two baths."""