From 31ef1e8ea06e0cc142c3b2b099f32139e12fa38e Mon Sep 17 00:00:00 2001 From: Dima Kogan Date: Sat, 18 Jan 2014 12:36:07 -0800 Subject: [PATCH] The comment describing the default max_linesearch value now matches the code The code set it to 40, but the comment said 20. The comment now matches the code --- include/lbfgs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/lbfgs.h b/include/lbfgs.h index cd944a3..5a1f9be 100644 --- a/include/lbfgs.h +++ b/include/lbfgs.h @@ -257,7 +257,7 @@ typedef struct { /** * The maximum number of trials for the line search. * This parameter controls the number of function and gradients evaluations - * per iteration for the line search routine. The default value is \c 20. + * per iteration for the line search routine. The default value is \c 40. */ int max_linesearch;