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>2009-10-18 22:09:20 +0400
committerJohn Langford <jl@hunch.net>2009-10-18 22:09:20 +0400
commit427c583435bf2d7fbf47fa059fa36f6ac5cb5dee (patch)
tree013ad87cf752d82e0576fe424ec9e2e79e2b6cd4 /parser.h
parentb4b8454dbc787770dd28c6edea30c06648e12810 (diff)
Various bugfixes for cluster support
Diffstat (limited to 'parser.h')
-rw-r--r--parser.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/parser.h b/parser.h
index a6a8b107..2f4779f9 100644
--- a/parser.h
+++ b/parser.h
@@ -36,6 +36,8 @@ struct parser {
v_array<partial_example> pes;//partial examples
v_array<size_t> ids; //unique ids for sources
+ v_array<size_t> counts; //partial examples received from sources
+ size_t finished_count;//the number of finished examples;
int label_sock;
int max_fd;
};