~ubuntu-branches/ubuntu/vivid/vowpal-wabbit/vivid

« back to all changes in this revision

Viewing changes to vowpalwabbit/bfgs.h

  • Committer: Package Import Robot
  • Author(s): Yaroslav Halchenko
  • Date: 2013-08-27 20:52:23 UTC
  • mfrom: (1.2.1) (7.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20130827205223-q005ps71tqinh25v
Tags: 7.3-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
Copyright (c) by respective owners including Yahoo!, Microsoft, and
 
3
individual contributors. All rights reserved.  Released under a BSD
 
4
license as described in the file LICENSE.
 
5
 */
 
6
#ifndef BFGS_H
 
7
#define BFGS_H
 
8
#include "gd.h"
 
9
 
 
10
namespace BFGS {
 
11
  void setup(vw& all, std::vector<std::string>&opts, po::variables_map& vm, po::variables_map& vm_file);
 
12
}
 
13
 
 
14
#endif