mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-03 17:33:52 +03:00
12 lines
387 B
C++
12 lines
387 B
C++
#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);
|
|
};
|
|
}
|