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

LMList.h « src « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f54121fad6d8c6301066425d6d8d1996725192db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

#pragma once

#include <list>
#include "LanguageModel.h"

class Phrase;
class ScoreColl;
class ScoreComponentCollection2;

class LMList : public std::list < LanguageModel* >	
{
public:
	void CalcScore(const Phrase &phrase, float &retFullScore, float &retNGramScore, ScoreComponentCollection2* breakdown) const;

};