Unverified Commit 2add37ce authored by Ugo Nwosu's avatar Ugo Nwosu
Browse files

Change default fix value to 0.0



Changing the default value makes BondScanParams more consistent with
get_bond_scan_parameters since the bond scan parameters returned by
get_bond_scan_parameters are meant to be used to adjust bonds by fixing
a0.

Signed-off-by: default avatarUgochukwu Nwosu <ugognw@gmail.com>
parent 4fddb0c9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ class BondScanParams(NamedTuple):
    a1: int
    mask: list[bool] | None = None
    indices: list[int] | None = None
    fix: float = 0.5
    fix: float = 0.0
    bond_lims: tuple[float, float] = (1.0, 4.0)