mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-11-11 05:52:56 +03:00
12 lines
427 B
C
12 lines
427 B
C
|
#include "FeatureVector.h"
|
||
|
#include "ScoreComponentCollection.h"
|
||
|
|
||
|
namespace Mira {
|
||
|
|
||
|
class Hildreth {
|
||
|
public :
|
||
|
static std::vector<Moses::FValue> optimise (const std::vector<Moses::ScoreComponentCollection>& a, const std::vector<Moses::FValue>& b );
|
||
|
static std::vector<Moses::FValue> optimise (const std::vector<Moses::ScoreComponentCollection>& a, const std::vector<Moses::FValue>& b, Moses::FValue C);
|
||
|
};
|
||
|
}
|