Commit 22b3cc0f authored by Davis King's avatar Davis King

made the spec a little more clear

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403212
parent 2638b2f6
...@@ -121,7 +121,7 @@ namespace dlib ...@@ -121,7 +121,7 @@ namespace dlib
- is_col_vector(x) == true - is_col_vector(x) == true
ensures ensures
- Performs an unconstrained minimization of the function f() using the given - Performs an unconstrained minimization of the function f() using the given
search_strategy. search_strategy and starting from the initial point x.
- 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()
...@@ -159,7 +159,7 @@ namespace dlib ...@@ -159,7 +159,7 @@ namespace dlib
- is_col_vector(x) == true - is_col_vector(x) == true
ensures ensures
- Performs an unconstrained maximization of the function f() using the given - Performs an unconstrained maximization of the function f() using the given
search_strategy. search_strategy and starting from the initial point x.
- 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()
...@@ -196,7 +196,7 @@ namespace dlib ...@@ -196,7 +196,7 @@ namespace dlib
- derivative_eps > 0 - derivative_eps > 0
ensures ensures
- Performs an unconstrained minimization of the function f() using the given - Performs an unconstrained minimization of the function f() using the given
search_strategy. search_strategy and starting from the initial point x.
- 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()
...@@ -231,7 +231,7 @@ namespace dlib ...@@ -231,7 +231,7 @@ namespace dlib
- derivative_eps > 0 - derivative_eps > 0
ensures ensures
- Performs an unconstrained maximization of the function f() using the given - Performs an unconstrained maximization of the function f() using the given
search_strategy. search_strategy and starting from the initial point x.
- 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()
......
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