Commit ba83f524 authored by ernestotapiar's avatar ernestotapiar Committed by Davis E. King

little corrections in global optimization (#1016)

* Removed redudant (repeated) definition of sample_type.

* Added return statement in the documentation of the (lambda) upper bound
function.
parent 977db529
......@@ -140,8 +140,6 @@ namespace dlib
{
const long dims = points[0].x.size();
using sample_type = std::vector<std::pair<size_t,double>>;
using sample_type = std::vector<std::pair<size_t,double>>;
using kernel_type = sparse_linear_kernel<sample_type>;
std::vector<sample_type> x;
......
......@@ -53,6 +53,7 @@ namespace dlib
double local_bound = p.y + sqrt(noise_terms[i] + trans(p.x-x)*M*(p.x-x))
min_ub = min(min_ub, local_bound)
}
return min_ub;
}
Where POINTS is an array of function_evaluation instances drawn from F(x),
M is a diagonal matrix, and noise_terms is an array of scalars.
......
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