diff --git a/docs/docs/optimization.xml b/docs/docs/optimization.xml index cd71818fd..8c18cc25d 100644 --- a/docs/docs/optimization.xml +++ b/docs/docs/optimization.xml @@ -41,6 +41,7 @@
Special Purpose Optimizers + solve_qp_box_constrained solve_qp_using_smo solve_qp2_using_smo solve_qp3_using_smo @@ -429,6 +430,26 @@ subject to the following constraint: + + + + solve_qp_box_constrained + dlib/optimization.h + dlib/optimization/optimization_solve_qp_using_smo_abstract.h + + This function solves the following quadratic program: +
+   Minimize: f(alpha) == 0.5*trans(alpha)*Q*alpha + trans(b)*alpha 
+   subject to the following box constraints on alpha:
+      0 <= min(alpha-lower)
+      0 <= max(upper-alpha)
+   Where f is convex.  This means that Q should be positive-semidefinite.
+
+ +
+ +
+ diff --git a/docs/docs/term_index.xml b/docs/docs/term_index.xml index e3a70124e..5c4943a29 100644 --- a/docs/docs/term_index.xml +++ b/docs/docs/term_index.xml @@ -153,6 +153,7 @@ +