blob: 4d706f7a4c619725e8e103f503778a9a04979c60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef _LBFGS_H_
#define _LBFGS_H_
#include <vector>
// template<class FuncGrad>
// std::vector<double>
// perform_LBFGS(FuncGrad func_grad, const std::vector<double> & x0);
std::vector<double> perform_LBFGS(
double (*func_grad)(const std::vector<double> &, std::vector<double> &),
const std::vector<double> &x0);
std::vector<double> perform_OWLQN(
double (*func_grad)(const std::vector<double> &, std::vector<double> &),
const std::vector<double> &x0, const double C);
const int LBFGS_M = 10;
#endif
|