13 #ifndef MLPACK_CORE_OPTIMIZERS_FUNCTION_HPP 14 #define MLPACK_CORE_OPTIMIZERS_FUNCTION_HPP 19 namespace optimization {
21 template<
typename FunctionType>
37 namespace optimization {
62 template<
typename FunctionType>
90 FunctionType>::EvaluateWithGradient;
92 FunctionType>::EvaluateWithGradient;
The AddEvaluateWithGradient mixin class will provide an EvaluateWithGradient() method if the given Fu...
The AddDecomposableEvaluateStatic mixin class will add a decomposable static Gradient() method if a d...
The AddDecomposableGradientConst mixin class will add a decomposable const Gradient() method if a dec...
The AddEvaluateWithGradientStatic mixin class will provide a static EvaluateWithGradient() method if ...
The AddDecomposableEvaluateWithGradient mixin class will add a decomposable EvaluateWithGradient() me...
The AddEvaluate mixin class will provide an Evaluate() method if the given FunctionType has EvaluateW...
The AddDecomposableEvaluate mixin class will add a decomposable Evaluate() method if a decomposable E...
The AddGradient mixin class will provide a const Gradient() method if the given FunctionType has Eval...
The AddGradient mixin class will provide a static Gradient() method if the given FunctionType has sta...
The core includes that mlpack expects; standard C++ includes and Armadillo.
The AddDecomposableEvaluateStatic mixin class will add a decomposable static Evaluate() method if a d...
The AddEvaluateStatic mixin class will provide a static Evaluate() method if the given FunctionType h...
The AddDecomposableGradient mixin class will add a decomposable Gradient() method if a decomposable E...
The AddDecomposableEvaluateWithGradientStatic mixin class will add a decomposable static EvaluateWith...
The AddEvaluateWithGradient mixin class will provide an EvaluateWithGradient() const method if the gi...
The AddDecomposableEvaluateWithGradientConst mixin class will add a decomposable const EvaluateWithGr...
The AddGradient mixin class will provide a Gradient() method if the given FunctionType has EvaluateWi...
The AddEvaluateConst mixin class will provide a const Evaluate() method if the given FunctionType has...
The Function class is a wrapper class for any FunctionType that will add any possible derived methods...
The AddDecomposableEvaluateConst mixin class will add a decomposable const Evaluate() method if a dec...