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-09-20 03:17:28 +0400
committerJohn Langford <jl@hunch.net>2009-09-20 03:17:28 +0400
commitf5e75687c8d6debdbdc38ba5cc023ecb209bd9af (patch)
tree84962846432895610bd575360634aa3663b46d37 /noop.cc
parent0bda878246f522418bdf71902fa45c8efab9347e (diff)
first compiling (but not debugged) cluster version.
Diffstat (limited to 'noop.cc')
-rw-r--r--noop.cc7
1 files changed, 2 insertions, 5 deletions
diff --git a/noop.cc b/noop.cc
index 70b3991f..597f2cee 100644
--- a/noop.cc
+++ b/noop.cc
@@ -7,11 +7,8 @@ void start_noop()
{
example* ec = NULL;
- while ( (ec = get_example(ec,0)) )
- {
- ec->threads_to_finish = 1;
- ec->done = true;
- }
+ while ( (ec = get_example(0)) )
+ finish_example(ec);
}
void end_noop()