mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-27 05:55:02 +03:00
23 lines
444 B
C++
23 lines
444 B
C++
//
|
|
// Oliver Wilson <oliver.wilson@ed.ac.uk>
|
|
//
|
|
|
|
#ifndef moses_LanguageModelLDHT_h
|
|
#define moses_LanguageModelLDHT_h
|
|
|
|
#include "moses/TypeDef.h"
|
|
|
|
namespace Moses
|
|
{
|
|
|
|
class ScoreIndexManager;
|
|
class LanguageModel;
|
|
|
|
LanguageModel* ConstructLDHTLM(const std::string& file,
|
|
ScoreIndexManager& manager,
|
|
FactorType factorType);
|
|
} // namespace Moses.
|
|
|
|
#endif // moses_LanguageModelLDHT_h
|
|
|