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:
authorUlrich Germann <Ulrich.Germann@gmail.com>2015-11-11 00:44:48 +0300
committerUlrich Germann <Ulrich.Germann@gmail.com>2015-11-11 00:44:48 +0300
commit806f888c10ac02eba67454d55aa0880464e4f284 (patch)
tree37127868f28945a81b8a6be0bf8bab0c77841e7b /moses/Manager.cpp
parent2ae2aee953011a87ed565ceeecba0f3455b24397 (diff)
Moved placeholder factor variable from StaticData to InputOptions.
Diffstat (limited to 'moses/Manager.cpp')
-rw-r--r--moses/Manager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/moses/Manager.cpp b/moses/Manager.cpp
index e9f8899aa..bae0e9ec3 100644
--- a/moses/Manager.cpp
+++ b/moses/Manager.cpp
@@ -1754,7 +1754,7 @@ OutputSurface(std::ostream &out, const Hypothesis &edge,
if (reportAllFactors == true) {
out << phrase;
} else {
- FactorType placeholderFactor = StaticData::Instance().GetPlaceholderFactor();
+ FactorType placeholderFactor = StaticData::Instance().options().input.placeholder_factor;
std::map<size_t, const Factor*> placeholders;
if (placeholderFactor != NOT_FOUND) {