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: 7230a205fdb8555f1949a904d19e1534b7a4d0ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

#pragma once

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

class Phrase;
class ScoreColl;
class ScoreComponentCollection;

//! List of language models
class LMList : public std::list < LanguageModel* >	
{
public:
	void CalcScore(const Phrase &phrase, float &retFullScore, float &retNGramScore, ScoreComponentCollection* breakdown) const;

};