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
path: root/bfgs.h
diff options
context:
space:
mode:
authorJohn Langford <jl@hunch.net>2011-07-18 11:17:43 +0400
committerJohn Langford <jl@hunch.net>2011-07-18 11:17:43 +0400
commitc2a74a3925a471604b62ce4c0839130e5e77c3b2 (patch)
tree13125e9909c750be8d13d9f368e278c518ff18d6 /bfgs.h
parent280b23d4a1ad20bfdc90eaab7af2a087b449e377 (diff)
initial L-BFGS from Miro Dudik
Diffstat (limited to 'bfgs.h')
-rw-r--r--bfgs.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/bfgs.h b/bfgs.h
new file mode 100644
index 00000000..f7e58374
--- /dev/null
+++ b/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