Welcome to mirror list, hosted at ThFree Co, Russian Federation.

parse_args.h « vowpalwabbit - github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 744fece92792fdae8d40bdbee980ae5531270f6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
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 PARSE_ARGS_H
#define PARSE_ARGS_H

#include <boost/program_options.hpp>
#include <boost/program_options/parsers.hpp>
namespace po = boost::program_options;
#include "gd.h"
#include "global_data.h"

vw* parse_args(int argc, char *argv[]);

#endif