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/sender.cc
parent283e5d8c35cda9b1fda783528def3ea2a021b729 (diff)
uniform constructor naming convention for reductions and learning algorithms
Diffstat (limited to 'vowpalwabbit/sender.cc')
-rw-r--r--vowpalwabbit/sender.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vowpalwabbit/sender.cc b/vowpalwabbit/sender.cc
index ced2168f..64b4995c 100644
--- a/vowpalwabbit/sender.cc
+++ b/vowpalwabbit/sender.cc
@@ -110,7 +110,7 @@ void send_features(io_buf *b, example* ec)
void learn(void*in, void* d, example*ec) { cout << "sender can't be used under reduction" << endl; }
void finish(void*in, void* d) { cout << "sender can't be used under reduction" << endl; }
- void parse_send_args(vw& all, po::variables_map& vm, vector<string> pairs)
+ void setup(vw& all, po::variables_map& vm, vector<string> pairs)
{
sender* s = (sender*)calloc(1,sizeof(sender));
s->sd = -1;