Skip to content

Commit

Permalink
higher precision
Browse files Browse the repository at this point in the history
  • Loading branch information
meandmytram committed Jan 31, 2025
1 parent 4745247 commit 22ce123
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mdopt/optimiser/dephasing_dmrg.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def __init__(
mps: Union[ExplicitMPS, CanonicalMPS],
mps_target: Union[ExplicitMPS, CanonicalMPS],
chi_max: int = int(1e4),
cut: float = float(1e-12),
cut: float = float(1e-17),
mode: str = "SA",
silent: bool = False,
copy: bool = True,
Expand Down
2 changes: 1 addition & 1 deletion mdopt/optimiser/dmrg.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def __init__(
mps: Union[ExplicitMPS, CanonicalMPS],
mpo: List[np.ndarray],
chi_max: int = int(1e4),
cut: float = float(1e-12),
cut: float = float(1e-17),
mode: str = "SA",
silent: bool = False,
copy: bool = True,
Expand Down

0 comments on commit 22ce123

Please sign in to comment.