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>2014-03-27 19:03:32 +0400
committerJohn Langford <jl@hunch.net>2014-03-27 19:03:32 +0400
commit05f7e5110a7b038e056d794a9edc710d64090f7b (patch)
treed95df9828f545598fa0b7ddadc7857d49f95606a /vowpalwabbit/reductions.h
parentd639c86415e89d5df6f9df409e8bec4bb7570662 (diff)
more minor refactoring
Diffstat (limited to 'vowpalwabbit/reductions.h')
-rw-r--r--vowpalwabbit/reductions.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/vowpalwabbit/reductions.h b/vowpalwabbit/reductions.h
new file mode 100644
index 00000000..9b516a06
--- /dev/null
+++ b/vowpalwabbit/reductions.h
@@ -0,0 +1,18 @@
+/*
+Copyright (c) by respective owners including Yahoo!, Microsoft, and
+individual contributors. All rights reserved. Released under a BSD
+license as described in the file LICENSE.
+ */
+#ifndef REDUCTIONS_H
+#define REDUCTIONS_H
+
+#include <boost/program_options.hpp>
+#include <boost/program_options/parsers.hpp>
+namespace po = boost::program_options;
+#include "io_buf.h" // for save/load
+#include "example.h" // for example definition
+#include "parser.h" // for finish_example()
+#include "learner.h" // for core reduction definition
+#include "global_data.h" // for vw datastructure
+
+#endif