summaryrefslogtreecommitdiff
path: root/utils/synutils/maxent-3.0/lbfgs.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/synutils/maxent-3.0/lbfgs.h')
-rw-r--r--utils/synutils/maxent-3.0/lbfgs.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/utils/synutils/maxent-3.0/lbfgs.h b/utils/synutils/maxent-3.0/lbfgs.h
deleted file mode 100644
index ed5cd944..00000000
--- a/utils/synutils/maxent-3.0/lbfgs.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef _LBFGS_H_
-#define _LBFGS_H_
-
-// 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 = 7;
-const int LBFGS_M = 10;
-
-#endif