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-08 15:37:16 +0400
committerHieu Hoang <hieu@hoang.co.uk>2013-05-08 15:37:16 +0400
commitecbedc0ceeaa63745c71c9de53265fa4ff58f92e (patch)
tree066e340a006202c1909fd2dd1ead633aa06e84c8 /moses/TranslationOption.h
parentad0472baeb486b9038c27d9ba0736dc316ee8aba (diff)
rename variable which is just used for caching lexicalised reordering scores
Diffstat (limited to 'moses/TranslationOption.h')
-rw-r--r--moses/TranslationOption.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/moses/TranslationOption.h b/moses/TranslationOption.h
index bcd5bbf4c..5a3fda726 100644
--- a/moses/TranslationOption.h
+++ b/moses/TranslationOption.h
@@ -41,6 +41,8 @@ namespace Moses
class PhraseDictionary;
class GenerationDictionary;
class FeatureFunction;
+class LexicalReordering;
+
/** Available phrase translation for a particular sentence pair.
* In a multi-factor model, this is expanded from the entries in the
@@ -139,7 +141,7 @@ public:
return &(it->second);
}
- void CacheLexReorderingScores(const FeatureFunction &scoreProducer, const Scores &score);
+ void CacheLexReorderingScores(const LexicalReordering &scoreProducer, const Scores &score);
TO_STRING();