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@jl-desktop.(none)>2010-09-05 01:06:31 +0400
committerJohn Langford <jl@jl-desktop.(none)>2010-09-05 01:06:31 +0400
commitf7388c09c82c6d0440679fab915d2fbcaa25d795 (patch)
treede60557448e5b9463ac79ed4973e9d577145e659 /multisource.cc
parentb7ba3f3fa0d5e29f699803892ea1ec1aabba68ca (diff)
finished implementing backprop, debugging
Diffstat (limited to 'multisource.cc')
-rw-r--r--multisource.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/multisource.cc b/multisource.cc
index b41432d2..572f4b57 100644
--- a/multisource.cc
+++ b/multisource.cc
@@ -45,7 +45,7 @@ bool blocking_get_global_prediction(int sock, global_prediction &p)
return ret;
}
-void send_prediction(int sock, prediction p)
+void send_prediction(int sock, prediction &p)
{
if (write(sock, &p, sizeof(p)) < (int)sizeof(p))
{