From 3b35fa16dc6cba0fd520d60d3673bc019841f1b1 Mon Sep 17 00:00:00 2001 From: Sangwhan Moon Date: Tue, 4 Jun 2019 22:19:45 +0900 Subject: [PATCH] Update documentation for default value of delta. This matches the documentation to the actual code level default. Resolves #19. --- include/lbfgs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/lbfgs.h b/include/lbfgs.h index bba305f..0de1c78 100644 --- a/include/lbfgs.h +++ b/include/lbfgs.h @@ -233,7 +233,7 @@ typedef struct { * (f' - f) / f < \ref delta, * where f' is the objective value of \ref past iterations ago, and f is * the objective value of the current iteration. - * The default value is \c 0. + * The default value is \c 1e-5. */ lbfgsfloatval_t delta;