mosesdecoder/mira/Hildreth.h
2012-05-10 18:54:24 +01:00

12 lines
387 B
C++
Executable File

#include "FeatureVector.h"
#include "ScoreComponentCollection.h"
namespace Mira {
class Hildreth {
public :
static std::vector<float> optimise (const std::vector<Moses::ScoreComponentCollection>& a, const std::vector<float>& b );
static std::vector<float> optimise (const std::vector<Moses::ScoreComponentCollection>& a, const std::vector<float>& b, float C);
};
}