summaryrefslogtreecommitdiff
path: root/dtrain/test/mtm11/mira_update/Hildreth.h
blob: 8d791085227cc1bd4d275c3950fb8818329a091c (plain)
1
2
3
4
5
6
7
8
9
10
#include "sparse_vector.h"

namespace Mira {
  class Hildreth {
  public :
    static std::vector<double> optimise(std::vector< SparseVector<double> >& a, std::vector<double>& b);
    static std::vector<double> optimise(std::vector< SparseVector<double> >& a, std::vector<double>& b, double C);
  };
}