From 276ca31bd56a01fc611fce4b19a84cafb510d4e7 Mon Sep 17 00:00:00 2001 From: Martin Reinecke Date: Sun, 9 Jul 2017 09:04:06 +0200 Subject: [PATCH] doc cosmetics --- .../minimization/line_searching/line_search_strong_wolfe.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nifty/minimization/line_searching/line_search_strong_wolfe.py b/nifty/minimization/line_searching/line_search_strong_wolfe.py index 6305c1a6..1d44f052 100644 --- a/nifty/minimization/line_searching/line_search_strong_wolfe.py +++ b/nifty/minimization/line_searching/line_search_strong_wolfe.py @@ -24,9 +24,9 @@ from .line_search import LineSearch class LineSearchStrongWolfe(LineSearch): """Class for finding a step size that satisfies the strong Wolfe conditions. - Algorithm contains two stages. It begins whit a trial step length and it - keeps increasing the it until it finds an acceptable step length or an - interval. If it does not satisfy the Wolfe conditions it performs the Zoom + Algorithm contains two stages. It begins whit a trial step length and + keeps increasing it until it finds an acceptable step length or an + interval. If it does not satisfy the Wolfe conditions, it performs the Zoom algorithm (second stage). By interpolating it decreases the size of the interval until an acceptable step length is found. -- GitLab