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
path: root/moses
diff options
context:
space:
mode:
authorheafield <heafield@1f5c12ca-751b-0410-a591-d2e778427230>2011-10-13 13:44:51 +0400
committerheafield <heafield@1f5c12ca-751b-0410-a591-d2e778427230>2011-10-13 13:44:51 +0400
commit7d9bc523a6a5f3151254d8bf95d99e3307394173 (patch)
tree571981506f773b93a8d8a261e33229529936975f /moses
parent541f776198cde053323c958de2ca697e2052f5be (diff)
Remove unused code
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@4347 1f5c12ca-751b-0410-a591-d2e778427230
Diffstat (limited to 'moses')
-rw-r--r--moses/src/LanguageModel.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/moses/src/LanguageModel.h b/moses/src/LanguageModel.h
index b8e19a8d2..db42d1896 100644
--- a/moses/src/LanguageModel.h
+++ b/moses/src/LanguageModel.h
@@ -127,16 +127,6 @@ public:
ScoreComponentCollection* accumulator) const {
return m_implementation->EvaluateChart(cur_hypo, featureID, accumulator, this);
}
-
-#ifdef WITH_THREADS
- // if multi-threaded return boost ptr
- boost::shared_ptr<LanguageModelImplementation>
-#else // return normal LM ptr
- LanguageModelImplementation*
-#endif
- GetLMImplementation() const {
- return m_implementation;
- }
};
}