Commit 7831ae02 authored by Davis King's avatar Davis King

This is the first checkin of a bunch of code refactoring I have been doing to this component.

Most of these changes are just rearrangements of the old code.  However, I also changed
the starting value of a line search and also removed some unneeded calls to the objective
function and its derivative in the course of doing the refactoring.  This has all resulted
in a significant reduction in calls to the objective function.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403182
parent 46401b06
This diff is collapsed.
......@@ -88,9 +88,8 @@ namespace dlib
requires
- is_matrix<T>::value == true (i.e. T must be a dlib::matrix)
- f must take a dlib::matrix that is a column vector
- start.nc() == 1
- direction.nc() == 1
(i.e. start and direction should be column vectors)
- is_col_vector(start) && is_col_vector(direction) && start.size() == direction.size()
(i.e. start and direction should be column vectors of the same size)
- f must return either a double or a column vector the same length and
type as start
- f(start + 1.5*direction) should be a valid expression
......
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