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

Dictionary.cpp « src « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3cee67497ac355b5c496b20dbf324dfdea97a546 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// $Id$
#include "Dictionary.h"
#include "FactorTypeSet.h"

size_t Dictionary::s_index = 0;

Dictionary::Dictionary(size_t noScoreComponent)
	:m_noScoreComponent(noScoreComponent)
	,m_index(s_index++)
	,m_factorsUsed(2)
{
}

Dictionary::~Dictionary() {}

void Dictionary::CleanUp() {}