Skip to content

Commit

Permalink
adjust default value
Browse files Browse the repository at this point in the history
  • Loading branch information
yixuan committed Mar 8, 2020
1 parent b4a7ed6 commit a95c9b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/LBFGSpp/Param.h
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ class LBFGSBParam
///
/// The maximum number of iterations in the subspace minimization.
/// This parameter controls the number of iterations in the subspace
/// minimization routine. The default value is \c 20.
/// minimization routine. The default value is \c 10.
///
int max_submin;
///
Expand Down Expand Up @@ -311,7 +311,7 @@ class LBFGSBParam
past = 1;
delta = Scalar(1e-10);
max_iterations = 0;
max_submin = 20;
max_submin = 10;
max_linesearch = 20;
min_step = Scalar(1e-20);
max_step = Scalar(1e+20);
Expand Down

0 comments on commit a95c9b5

Please sign in to comment.