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-10-03 21:58:45 +0400
committerHieu Hoang <hieu@hoang.co.uk>2013-10-03 21:58:45 +0400
commitf18e35c42a9d07ca11d5fed107f97999076cfae5 (patch)
tree2d22fc29d93b75bc4e33854e7f655c1cc2cc882f /moses/TranslationOptionCollectionConfusionNet.cpp
parenta41dbeba46cd9dd0eb0135461464a49e79ac96b5 (diff)
correct creation of input paths for lattices
Diffstat (limited to 'moses/TranslationOptionCollectionConfusionNet.cpp')
-rw-r--r--moses/TranslationOptionCollectionConfusionNet.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/moses/TranslationOptionCollectionConfusionNet.cpp b/moses/TranslationOptionCollectionConfusionNet.cpp
index a2e9ddfda..1b2b1c552 100644
--- a/moses/TranslationOptionCollectionConfusionNet.cpp
+++ b/moses/TranslationOptionCollectionConfusionNet.cpp
@@ -48,7 +48,7 @@ TranslationOptionCollectionConfusionNet::TranslationOptionCollectionConfusionNet
InputPath *path = new InputPath(subphrase, labels, range, NULL, inputScore);
list.push_back(path);
- m_phraseDictionaryQueue.push_back(path);
+ m_inputPathQueue.push_back(path);
}
}
@@ -93,7 +93,7 @@ TranslationOptionCollectionConfusionNet::TranslationOptionCollectionConfusionNet
InputPath *path = new InputPath(subphrase, labels, range, &prevPath, inputScore);
list.push_back(path);
- m_phraseDictionaryQueue.push_back(path);
+ m_inputPathQueue.push_back(path);
} // for (size_t i = 0; i < col.size(); ++i) {
++prevNodesInd;