Commit 3e68d3e5 authored by Davis King's avatar Davis King

Minor cleanup

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403217
parent 59409fb5
// The contents of this file are in the public domain. See LICENSE_FOR_EXAMPLE_PROGRAMS.txt
/*
This is an example illustrating the use the unconstrained optimization
routines from the dlib C++ Library.
This is an example illustrating the use the optimization routines from
the dlib C++ Library.
The library provides implementations of the conjugate gradient,
BFGS, L-BFGS, and BOBYQA optimization algorithms. These algorithms allow
......@@ -213,8 +213,6 @@ int main()
// Finally, lets try the BOBYQA algorithm. This is a technique specially
// designed to minimize a function in the absence of derivative information.
// Generally speaking, it is the method of choice if derivatives are not available.
// For the details on what the parameters to this function represent see its documentation.
starting_point = -4,5,99,3;
find_min_bobyqa(test_function(target),
starting_point,
......
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