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>2013-03-20 01:54:03 +0400
committerJohn Langford <jl@hunch.net>2013-03-20 01:54:03 +0400
commit51b200e6a86052a12241188a4c7ba334991f6674 (patch)
tree9716fe0c7a423eea3678c0c84d3b62d775d3d104 /vowpalwabbit/bfgs.h
parent283e5d8c35cda9b1fda783528def3ea2a021b729 (diff)
uniform constructor naming convention for reductions and learning algorithms
Diffstat (limited to 'vowpalwabbit/bfgs.h')
-rw-r--r--vowpalwabbit/bfgs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vowpalwabbit/bfgs.h b/vowpalwabbit/bfgs.h
index fe1356ac..8ce28ac2 100644
--- a/vowpalwabbit/bfgs.h
+++ b/vowpalwabbit/bfgs.h
@@ -8,7 +8,7 @@ license as described in the file LICENSE.
#include "gd.h"
namespace BFGS {
- void parse_args(vw& all, std::vector<std::string>&opts, po::variables_map& vm, po::variables_map& vm_file);
+ void setup(vw& all, std::vector<std::string>&opts, po::variables_map& vm, po::variables_map& vm_file);
}
#endif