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-05-30 02:04:27 +0400
committerJohn Langford <jl@hunch.net>2012-05-30 02:04:27 +0400
commit6dc3ddde0555059b334e9688552d2d419b07e330 (patch)
tree85491cfaddffb68e440044a959f717572f667f41 /vowpalwabbit/bfgs.h
parent463f02e4a6b0a4be4bfa8f8e35facc26e4cbdc62 (diff)
nearly all state now addressable
Diffstat (limited to 'vowpalwabbit/bfgs.h')
-rw-r--r--vowpalwabbit/bfgs.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/vowpalwabbit/bfgs.h b/vowpalwabbit/bfgs.h
index e6e65632..6ea5beed 100644
--- a/vowpalwabbit/bfgs.h
+++ b/vowpalwabbit/bfgs.h
@@ -10,10 +10,10 @@ embodied in the content of this file are licensed under the BSD
namespace BFGS {
- void drive_bfgs();
- void initializer();
- void finish();
- void learn(example* ec);
+ void drive_bfgs(void*);
+ void initializer(vw& all);
+ void finish(vw& all);
+ void learn(vw& all, example* ec);
}