Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SkeletonStatelessFF.cpp « FF « moses2 - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4875f155da978b248e6cf4a1ea5dfe3182101c1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
 * SkeletonStatefulFF.cpp
 *
 *  Created on: 27 Oct 2015
 *      Author: hieu
 */
#include "../Scores.h"

#include "SkeletonStatelessFF.h"

namespace Moses2
{

SkeletonStatelessFF::SkeletonStatelessFF(size_t startInd,
    const std::string &line) :
  StatelessFeatureFunction(startInd, line)
{
  ReadParameters();
}

SkeletonStatelessFF::~SkeletonStatelessFF()
{
  // TODO Auto-generated destructor stub
}

void SkeletonStatelessFF::EvaluateInIsolation(MemPool &pool,
    const System &system, const Phrase<Moses2::Word> &source,
    const TargetPhraseImpl &targetPhrase, Scores &scores,
    SCORE &estimatedScore) const
{
}

void SkeletonStatelessFF::EvaluateInIsolation(MemPool &pool, const System &system, const Phrase<SCFG::Word> &source,
    const TargetPhrase<SCFG::Word> &targetPhrase, Scores &scores,
    SCORE &estimatedScore) const
{
}

}