mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-08 04:27:53 +03:00
28 lines
552 B
C++
28 lines
552 B
C++
/*
|
|
* SkeletonStatefulFF.cpp
|
|
*
|
|
* Created on: 27 Oct 2015
|
|
* Author: hieu
|
|
*/
|
|
|
|
#include "SkeletonStatelessFF.h"
|
|
|
|
SkeletonStatelessFF::SkeletonStatelessFF(size_t startInd, const std::string &line)
|
|
:StatelessFeatureFunction(startInd, line)
|
|
{
|
|
//ReadParameters();
|
|
}
|
|
|
|
SkeletonStatelessFF::~SkeletonStatelessFF() {
|
|
// TODO Auto-generated destructor stub
|
|
}
|
|
|
|
void
|
|
SkeletonStatelessFF::EvaluateInIsolation(const System &system,
|
|
const PhraseBase &source, const TargetPhrase &targetPhrase,
|
|
Scores &scores,
|
|
Scores *estimatedFutureScores) const
|
|
{
|
|
|
|
}
|