diff options
author | Patrick Simianer <p@simianer.de> | 2012-02-21 09:34:59 +0100 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2012-02-21 09:34:59 +0100 |
commit | 29637c966fce216182c0e3d8f17d0ab281edfb67 (patch) | |
tree | e8d166477023248d19089bc88e33311469d64c9f /dtrain/test/mira_update/Hildreth.h | |
parent | d3f0e5e833dcc26c98f6bc8583ddc9fa9a4ea0bc (diff) |
fixed output, removed obsolete files
Diffstat (limited to 'dtrain/test/mira_update/Hildreth.h')
-rw-r--r-- | dtrain/test/mira_update/Hildreth.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/dtrain/test/mira_update/Hildreth.h b/dtrain/test/mira_update/Hildreth.h new file mode 100644 index 00000000..8d791085 --- /dev/null +++ b/dtrain/test/mira_update/Hildreth.h @@ -0,0 +1,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); + }; +} + |