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 <hieuhoang@gmail.com>2016-10-05 18:26:33 +0300
committerHieu Hoang <hieuhoang@gmail.com>2016-10-05 18:26:33 +0300
commit0e4e64b26dd3b82a0dfbfe2445f89e1dcbbdf61a (patch)
tree89f5cd84bd73c9304d687309c87aa472b221e982
parent041b13eb19f364b79809a7efa08c4552d41d4e75 (diff)
getKey() -> Moses::getKey()
-rw-r--r--moses/TranslationModel/ProbingPT/quering.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/moses/TranslationModel/ProbingPT/quering.cpp b/moses/TranslationModel/ProbingPT/quering.cpp
index ef980ef06..d616e1f25 100644
--- a/moses/TranslationModel/ProbingPT/quering.cpp
+++ b/moses/TranslationModel/ProbingPT/quering.cpp
@@ -96,7 +96,7 @@ uint64_t QueryEngine::getKey(uint64_t source_phrase[], size_t size) const
{
//TOO SLOW
//uint64_t key = util::MurmurHashNative(&source_phrase[0], source_phrase.size());
- return getKey(source_phrase, size);
+ return Moses::getKey(source_phrase, size);
}
std::pair<bool, uint64_t> QueryEngine::query(uint64_t key)