libcmaes 0.10.2
A C++11 library for stochastic optimization with CMA-ES
Loading...
Searching...
No Matches
vdcmaupdate.h
1
22#ifndef VDCMAUPDATE_H
23#define VDCMAUPDATE_H
24
25#include <libcmaes/cmaparameters.h>
26#include <libcmaes/cmasolutions.h>
27#include <libcmaes/eigenmvn.h>
28
29namespace libcmaes
30{
39 {
40 public:
41 template <class TGenoPheno>
42 static void update(const CMAParameters<TGenoPheno> &parameters,
45 };
46
47}
48
49#endif
Definition eigenmvn.h:109
Holder of the set of evolving solutions from running an instance of CMA-ES.
Definition cmasolutions.h:42
an optimizer main class.
Definition esoptimizer.h:72
VD-CMA update that is a linear time/space variant of CMA-ES This is an implementation that closely fo...
Definition vdcmaupdate.h:39
linear scaling of the parameter space to achieve similar sensitivity across all components.
Definition acovarianceupdate.h:30