Optimizer minimizes a multivariate function.
More...
#include <geogram/numerics/optimizer.h>
|
typedef void(* | funcgrad_callback) (index_t N, double *x, double &f, double *g) |
| Optimizer callback that evaluates a function and its gradient.
|
|
typedef void(* | newiteration_callback) (index_t N, const double *x, double f, const double *g, double gnorm) |
| Optimizer callback that is called at each iteration.
|
|
typedef void(* | evalhessian_callback) (index_t N, double *x, double &f, double *g, HESSIAN_MATRIX &hessian) |
| Optimizer callback that evaluates a function, its gradient and its Hessian.
|
|
|
virtual void | optimize (double *x)=0 |
| Minimizes a function, starting from initial value x.
|
|
void | set_N (index_t N) |
| Defines the number of variables.
|
|
index_t | get_N () const |
| Returns the number of variables.
|
|
void | set_M (index_t M) |
| Defines the inner number of iterations.
|
|
index_t | get_M () const |
| Returns the inner number of iterations.
|
|
void | set_max_iter (index_t maxiter) |
| Defines the maximum number of iterations.
|
|
index_t | get_max_iter () const |
| Returns the maximum number of iterations.
|
|
void | set_funcgrad_callback (funcgrad_callback fp) |
| Defines the callback that evaluates the function to be minimized and its gradient.
|
|
void | set_newiteration_callback (newiteration_callback fp) |
| Defines a callback that will be called at each iteration.
|
|
void | set_evalhessian_callback (evalhessian_callback fp) |
| Defines the callback that evaluates the Hessian of function to be minimized (second order derivatives).
|
|
void | set_epsg (double eg) |
| Defines the stopping criterion in terms of gradient magnitude.
|
|
void | set_epsf (double ef) |
| Defines the stopping criterion in terms of function value.
|
|
void | set_epsx (double ex) |
| Defines the stopping criterion in terms of variation of x.
|
|
void | set_verbose (bool verb) |
| Enables or disables verbose logs.
|
|
void | ref () const |
| Increments the reference count.
|
|
void | unref () const |
| Decrements the reference count.
|
|
bool | is_shared () const |
| Check if the object is shared.
|
|
int | nb_refs () const |
| Gets the number of references that point to this object.
|
|
|
static Optimizer * | create (const std::string &name="default") |
| Creates an Optimizer.
|
|
static void | ref (const Counted *counted) |
| Increments the reference count.
|
|
static void | unref (const Counted *counted) |
| Decrements the reference count.
|
|
Optimizer minimizes a multivariate function.
The dimension of the problem is defined by set_N(). The multivariate function to be minimized is defined by a callback that evaluates the function and its gradient, specified by set_funcgrad_callback(). Optimizer implements the numeric part of CentroidalVoronoiTesselation.
Optimizer objects are created using method create() which uses the Factory service. New Optimizers can be implemented and registered to the factory using geo_register_Optimizer_creator().
- See also
- OptimizerFactory
-
geo_register_Optimizer_creator
Definition at line 77 of file optimizer.h.
◆ evalhessian_callback
typedef void(* GEO::Optimizer::evalhessian_callback) (index_t N, double *x, double &f, double *g, HESSIAN_MATRIX &hessian) |
◆ funcgrad_callback
typedef void(* GEO::Optimizer::funcgrad_callback) (index_t N, double *x, double &f, double *g) |
◆ newiteration_callback
typedef void(* GEO::Optimizer::newiteration_callback) (index_t N, const double *x, double f, const double *g, double gnorm) |
◆ Optimizer()
GEO::Optimizer::Optimizer |
( |
| ) |
|
|
protected |
◆ create()
static Optimizer * GEO::Optimizer::create |
( |
const std::string & |
name = "default" | ) |
|
|
static |
Creates an Optimizer.
- Parameters
-
[in] | name | name of the Optimizer to create:
- "HLBFG" - BFGS (quasi-Newton)
- "HM1QN3" - for non-smooth functions
- "HCG" - non-linear conjugate gradient
- "HLBFGS_HESS" - BFGS with Hessian (full Newton)
- "default" - equivalent to "HLBFGS"
|
- Return values
-
nullptr | if name is not a valid Optimizer algorithm name |
otherwise,a | pointer to an Optimizer object. The returned pointer must be stored in a Optimizer_var that does automatic destruction:
static Optimizer * create(const std::string &name="default") Creates an Optimizer.
A smart pointer with reference-counted copy semantics.
|
◆ get_M()
index_t GEO::Optimizer::get_M |
( |
| ) |
const |
|
inline |
Returns the inner number of iterations.
Definition at line 154 of file optimizer.h.
◆ get_max_iter()
index_t GEO::Optimizer::get_max_iter |
( |
| ) |
const |
|
inline |
Returns the maximum number of iterations.
Definition at line 168 of file optimizer.h.
◆ get_N()
index_t GEO::Optimizer::get_N |
( |
| ) |
const |
|
inline |
Returns the number of variables.
Definition at line 139 of file optimizer.h.
◆ optimize()
virtual void GEO::Optimizer::optimize |
( |
double * |
x | ) |
|
|
pure virtual |
Minimizes a function, starting from initial value x.
- Parameters
-
[in] | x | is of size n, where n was defined with set_N() |
◆ set_epsf()
void GEO::Optimizer::set_epsf |
( |
double |
ef | ) |
|
|
inline |
Defines the stopping criterion in terms of function value.
Definition at line 211 of file optimizer.h.
◆ set_epsg()
void GEO::Optimizer::set_epsg |
( |
double |
eg | ) |
|
|
inline |
Defines the stopping criterion in terms of gradient magnitude.
Definition at line 203 of file optimizer.h.
◆ set_epsx()
void GEO::Optimizer::set_epsx |
( |
double |
ex | ) |
|
|
inline |
Defines the stopping criterion in terms of variation of x.
Definition at line 219 of file optimizer.h.
◆ set_evalhessian_callback()
Defines the callback that evaluates the Hessian of function to be minimized (second order derivatives).
Only used in "HLBFGS_HESS" mode.
Definition at line 195 of file optimizer.h.
◆ set_funcgrad_callback()
Defines the callback that evaluates the function to be minimized and its gradient.
Definition at line 176 of file optimizer.h.
◆ set_M()
void GEO::Optimizer::set_M |
( |
index_t |
M | ) |
|
|
inline |
Defines the inner number of iterations.
Used by HLBFGSOptimizer.
Definition at line 147 of file optimizer.h.
◆ set_max_iter()
void GEO::Optimizer::set_max_iter |
( |
index_t |
maxiter | ) |
|
|
inline |
Defines the maximum number of iterations.
Definition at line 161 of file optimizer.h.
◆ set_N()
void GEO::Optimizer::set_N |
( |
index_t |
N | ) |
|
|
inline |
Defines the number of variables.
Definition at line 132 of file optimizer.h.
◆ set_newiteration_callback()
Defines a callback that will be called at each iteration.
Definition at line 184 of file optimizer.h.
◆ set_verbose()
void GEO::Optimizer::set_verbose |
( |
bool |
verb | ) |
|
|
inline |
Enables or disables verbose logs.
Definition at line 226 of file optimizer.h.
◆ Optimizer_var
◆ OptimizerFactory
◆ epsf_
double GEO::Optimizer::epsf_ |
|
protected |
◆ epsg_
double GEO::Optimizer::epsg_ |
|
protected |
Error tolerance on x, f and g
Definition at line 258 of file optimizer.h.
◆ epsx_
double GEO::Optimizer::epsx_ |
|
protected |
◆ evalhessian_callback_
◆ funcgrad_callback_
◆ m_
Number of corrections in the BFGS scheme of Hessian approximation update
Definition at line 249 of file optimizer.h.
◆ max_iter_
◆ n_
◆ newiteration_callback_
◆ verbose_
bool GEO::Optimizer::verbose_ |
|
protected |
The documentation for this class was generated from the following file: