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

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHieu Hoang <hieu@hoang.co.uk>2013-05-21 15:27:13 +0400
committerHieu Hoang <hieu@hoang.co.uk>2013-05-21 15:27:13 +0400
commitff880ec6f19f9f58e5db534136a27859990995f3 (patch)
treef40d213f7876e50de6f4420e6e9ae5197c4f4c71 /moses/PDTAimp.h
parent031cbdf7cd85c85d0304afb32a83ac4da324af30 (diff)
delete references to LMList
Diffstat (limited to 'moses/PDTAimp.h')
-rw-r--r--moses/PDTAimp.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/moses/PDTAimp.h b/moses/PDTAimp.h
index 519d74281..acd140287 100644
--- a/moses/PDTAimp.h
+++ b/moses/PDTAimp.h
@@ -36,11 +36,10 @@ class PDTAimp
protected:
PDTAimp(PhraseDictionaryTreeAdaptor *p,unsigned nis)
- : m_languageModels(0),m_dict(0),
+ : m_dict(0),
m_obj(p),useCache(1),m_numInputScores(nis),totalE(0),distinctE(0) {}
public:
- LMList const* m_languageModels;
std::vector<FactorType> m_input,m_output;
PhraseDictionaryTree *m_dict;
typedef std::vector<TargetPhraseCollection const*> vTPC;
@@ -195,7 +194,6 @@ protected:
m_dict=new PhraseDictionaryTree();
m_input=input;
m_output=output;
- m_languageModels=&languageModels;
const StaticData &staticData = StaticData::Instance();
m_dict->NeedAlignmentInfo(staticData.NeedAlignmentInfo());