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>2016-01-05 01:53:38 +0300
committerUlrich Germann <Ulrich.Germann@gmail.com>2016-01-05 01:53:38 +0300
commite594211e25293330b606a4edb2177ab2fc3bbbfc (patch)
tree05f8e633b9df7501717eef33c8cb52369160b13f /moses/Manager.cpp
parentb32d7754cdf3a2090e3685dc3a0851d343891a70 (diff)
Fix bug in reporting of word alignment info in batch mode.
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 b0a85bea5..e5fcec2ff 100644
--- a/moses/Manager.cpp
+++ b/moses/Manager.cpp
@@ -1505,7 +1505,7 @@ void Manager::OutputBest(OutputCollector *collector) const
OutputSurface(out,*bestHypo, true);
if (options()->output.PrintAlignmentInfo) {
out << "||| ";
- bestHypo->OutputAlignment(out, options()->output.WA_SortOrder);
+ bestHypo->OutputAlignment(out, true);
}
IFVERBOSE(1) {