From 0af762c5e803b263f99c54bf461d5f3c299be1da Mon Sep 17 00:00:00 2001 From: Davis King Date: Sat, 5 Mar 2016 10:46:15 -0500 Subject: [PATCH] updated docs --- docs/docs/optimization.xml | 21 +++++++++++++++++++++ docs/docs/term_index.xml | 1 + 2 files changed, 22 insertions(+) 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 @@ +