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:
authorJohn Langford <jl@hunch.net>2012-06-01 01:03:44 +0400
committerJohn Langford <jl@hunch.net>2012-06-01 01:03:44 +0400
commite9cee58cae120d044c764e13dc4590b6fe54d7b4 (patch)
treeee0a9e13052a23cd81f4fa6a94b160eed431230a /vowpalwabbit/bfgs.h
parent2a180110f7c99b6a67e69ea3101e3d349970dcd1 (diff)
rejiggered reductions for library
Diffstat (limited to 'vowpalwabbit/bfgs.h')
-rw-r--r--vowpalwabbit/bfgs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vowpalwabbit/bfgs.h b/vowpalwabbit/bfgs.h
index 6ea5beed..5cdf5baa 100644
--- a/vowpalwabbit/bfgs.h
+++ b/vowpalwabbit/bfgs.h
@@ -12,8 +12,8 @@ namespace BFGS {
void drive_bfgs(void*);
void initializer(vw& all);
- void finish(vw& all);
- void learn(vw& all, example* ec);
+ void finish(void*);
+ void learn(void*, example* ec);
}