Skip to content

Commit

Permalink
linear method: change default regularization to 1e-4 (#260)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinsung authored Jun 27, 2024
1 parent db88eca commit 937712d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/ffsim/optimize/linear_method.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def minimize_linear_method(
lindep: float = 1e-8,
epsilon: float = 1e-8,
gtol: float = 1e-5,
regularization: float = 0.0,
regularization: float = 1e-4,
variation: float = 0.5,
optimize_regularization: bool = True,
optimize_variation: bool = True,
Expand Down

0 comments on commit 937712d

Please sign in to comment.