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

ScoreComponentCollection.cpp « src « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f0dc726163c8f8eac5a022b402f0def73a4fa2e1 (plain)
1
2
3
4
5
6
7
8
9
10
// $Id$

#include "ScoreComponentCollection.h"
#include "StaticData.h"

ScoreComponentCollection::ScoreComponentCollection()
  : m_scores(StaticData::Instance().GetTotalScoreComponents(), 0.0f)
  , m_sim(&StaticData::Instance().GetScoreIndexManager())
{}