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-07-09 17:19:35 +0400
committerHieu Hoang <hieu@hoang.co.uk>2013-07-09 17:19:35 +0400
commit5f9d0a85f5ee88069d5ceb976f57a5fc97c903b7 (patch)
tree896b838c0abaa5e507dcd8b4b611b55d4ea22f77 /moses/TranslationOptionCollection.h
parent9a22019aaba93d10392376540bf8cd27c9d3676b (diff)
rename vector<InputPath> to InputPathList. Pass regression tests
Diffstat (limited to 'moses/TranslationOptionCollection.h')
-rw-r--r--moses/TranslationOptionCollection.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/moses/TranslationOptionCollection.h b/moses/TranslationOptionCollection.h
index 9c91663b1..af1ba501c 100644
--- a/moses/TranslationOptionCollection.h
+++ b/moses/TranslationOptionCollection.h
@@ -69,7 +69,7 @@ protected:
const size_t m_maxNoTransOptPerCoverage; /*< maximum number of translation options per input span */
const float m_translationOptionThreshold; /*< threshold for translation options with regard to best option for input span */
std::vector<Phrase*> m_unksrcs;
- std::vector<InputPath*> m_phraseDictionaryQueue;
+ InputPathList m_phraseDictionaryQueue;
TranslationOptionCollection(InputType const& src, size_t maxNoTransOptPerCoverage,
float translationOptionThreshold);