2015-10-28 19:11:12 +03:00
|
|
|
/*
|
|
|
|
* SkeletonStatefulFF.cpp
|
|
|
|
*
|
|
|
|
* Created on: 27 Oct 2015
|
|
|
|
* Author: hieu
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "SkeletonStatelessFF.h"
|
|
|
|
|
|
|
|
SkeletonStatelessFF::SkeletonStatelessFF(size_t startInd, const std::string &line)
|
|
|
|
:StatelessFeatureFunction(startInd, line)
|
|
|
|
{
|
2015-10-29 02:35:21 +03:00
|
|
|
//ReadParameters();
|
2015-10-28 19:11:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
SkeletonStatelessFF::~SkeletonStatelessFF() {
|
|
|
|
// TODO Auto-generated destructor stub
|
|
|
|
}
|
|
|
|
|
2015-10-29 02:26:17 +03:00
|
|
|
void
|
2015-10-29 03:47:06 +03:00
|
|
|
SkeletonStatelessFF::EvaluateInIsolation(const System &system,
|
2015-10-29 03:56:50 +03:00
|
|
|
const PhraseBase &source, const TargetPhrase &targetPhrase,
|
2015-10-29 03:47:06 +03:00
|
|
|
Scores &scores,
|
|
|
|
Scores *estimatedFutureScores) const
|
2015-10-29 02:26:17 +03:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|