Commit 31d28732 authored by Davis King's avatar Davis King

updated the docs

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403456
parent 9280d6aa
...@@ -42,6 +42,7 @@ ...@@ -42,6 +42,7 @@
<item>find_min_single_variable</item> <item>find_min_single_variable</item>
<item>find_min_using_approximate_derivatives</item> <item>find_min_using_approximate_derivatives</item>
<item>find_min_bobyqa</item> <item>find_min_bobyqa</item>
<item>solve_qp_using_smo</item>
<item>find_max</item> <item>find_max</item>
<item>find_max_single_variable</item> <item>find_max_single_variable</item>
<item>find_max_using_approximate_derivatives</item> <item>find_max_using_approximate_derivatives</item>
...@@ -349,6 +350,26 @@ ...@@ -349,6 +350,26 @@
</component> </component>
<!-- ************************************************************************* --> <!-- ************************************************************************* -->
<component>
<name>solve_qp_using_smo</name>
<file>dlib/optimization.h</file>
<spec_file link="true">dlib/optimization/optimization_solve_qp_using_smo_abstract.h</spec_file>
<description>
This function solves the following quadratic program:
<pre>
Minimize: f(alpha) == 0.5*trans(alpha)*Q*alpha - trans(alpha)*b
subject to the following constraints:
sum(alpha) == C
min(alpha) >= 0
</pre>
</description>
</component>
<!-- ************************************************************************* -->
<component> <component>
<name>find_min_bobyqa</name> <name>find_min_bobyqa</name>
......
...@@ -41,6 +41,7 @@ ...@@ -41,6 +41,7 @@
<term file="algorithms.html" name="find_min_single_variable"/> <term file="algorithms.html" name="find_min_single_variable"/>
<term file="algorithms.html" name="find_min_using_approximate_derivatives"/> <term file="algorithms.html" name="find_min_using_approximate_derivatives"/>
<term file="algorithms.html" name="find_min_bobyqa"/> <term file="algorithms.html" name="find_min_bobyqa"/>
<term file="algorithms.html" name="solve_qp_using_smo"/>
<term link="algorithms.html#find_min_bobyqa" name="BOBYQA"/> <term link="algorithms.html#find_min_bobyqa" name="BOBYQA"/>
<term file="algorithms.html" name="find_max"/> <term file="algorithms.html" name="find_max"/>
<term file="algorithms.html" name="find_max_single_variable"/> <term file="algorithms.html" name="find_max_single_variable"/>
......
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