Commit 98cab583 authored by Davis King's avatar Davis King

Added comments regarding the paired calling order of functions and their

derivatives.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403194
parent 880f532c
...@@ -125,6 +125,10 @@ namespace dlib ...@@ -125,6 +125,10 @@ namespace dlib
- The function is optimized until stop_strategy decides that an acceptable - The function is optimized until stop_strategy decides that an acceptable
point has been found or f(#x) < min_f. point has been found or f(#x) < min_f.
- #x == the value of x that was found to minimize f() - #x == the value of x that was found to minimize f()
- When this function makes calls to f() and der() it always does so by
first calling f() and then calling der(). That is, these two functions
are always called in pairs with f() being called first and then der()
being called second.
!*/ !*/
// ---------------------------------------------------------------------------------------- // ----------------------------------------------------------------------------------------
...@@ -159,6 +163,10 @@ namespace dlib ...@@ -159,6 +163,10 @@ namespace dlib
- The function is optimized until stop_strategy decides that an acceptable - The function is optimized until stop_strategy decides that an acceptable
point has been found or f(#x) > max_f. point has been found or f(#x) > max_f.
- #x == the value of x that was found to maximize f() - #x == the value of x that was found to maximize f()
- When this function makes calls to f() and der() it always does so by
first calling f() and then calling der(). That is, these two functions
are always called in pairs with f() being called first and then der()
being called second.
!*/ !*/
// ---------------------------------------------------------------------------------------- // ----------------------------------------------------------------------------------------
......
...@@ -138,6 +138,10 @@ namespace dlib ...@@ -138,6 +138,10 @@ namespace dlib
immediately. immediately.
- This function is also optimized for the case where der(0) is negative. I.e. - This function is also optimized for the case where der(0) is negative. I.e.
positive values of the argument to f() should be in a descent direction. positive values of the argument to f() should be in a descent direction.
- When this function makes calls to f() and der() it always does so by
first calling f() and then calling der(). That is, these two functions
are always called in pairs with f() being called first and then der()
being called second.
!*/ !*/
/* /*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment