Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Muller <brian.muller@livingsocial.com>2012-01-03 23:56:51 +0400
committerBrian Muller <brian.muller@livingsocial.com>2012-01-03 23:56:51 +0400
commit9f457bf70dcab12082ec07cc6018e3f1a75899a2 (patch)
treea30f2028788bf291a71200ff5644a3c72a842f27 /vowpalwabbit/bfgs.h
parent5c267f9404ffbb733c88b759605386aad51e6baf (diff)
now creating a linkable library
Diffstat (limited to 'vowpalwabbit/bfgs.h')
-rw-r--r--vowpalwabbit/bfgs.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/vowpalwabbit/bfgs.h b/vowpalwabbit/bfgs.h
new file mode 100644
index 00000000..e1daed18
--- /dev/null
+++ b/vowpalwabbit/bfgs.h
@@ -0,0 +1,18 @@
+/*
+Copyright (c) 2010 Yahoo! Inc. All rights reserved. The copyrights
+embodied in the content of this file are licensed under the BSD
+(revised) open source license
+ */
+
+#ifndef BFGS_H
+#define BFGS_H
+#include "gd.h"
+
+namespace BFGS {
+
+void setup_bfgs(gd_thread_params& t);
+void destroy_bfgs();
+
+}
+
+#endif