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:
authorarianna_b <arianna_b@1f5c12ca-751b-0410-a591-d2e778427230>2011-09-02 15:40:32 +0400
committerarianna_b <arianna_b@1f5c12ca-751b-0410-a591-d2e778427230>2011-09-02 15:40:32 +0400
commit633b80f515ddb585b478af27ef09531d78c9a45b (patch)
tree8b1a0deea6585b556bedf70ac2917a10190f5f46 /moses-cmd
parent762c47d8c98cf3e7752f7a79b1b0fb61226f4432 (diff)
recovered missing blank in n-best-list output
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@4170 1f5c12ca-751b-0410-a591-d2e778427230
Diffstat (limited to 'moses-cmd')
-rwxr-xr-xmoses-cmd/src/IOWrapper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/moses-cmd/src/IOWrapper.cpp b/moses-cmd/src/IOWrapper.cpp
index 5dac23560..85276dd81 100755
--- a/moses-cmd/src/IOWrapper.cpp
+++ b/moses-cmd/src/IOWrapper.cpp
@@ -469,7 +469,7 @@ void OutputNBest(std::ostream& out, const Moses::TrellisPathList &nBestList, con
}
if (includeWordAlignment) {
- out << " |||";
+ out << " ||| ";
for (int currEdge = (int)edges.size() - 2 ; currEdge >= 0 ; currEdge--) {
const Hypothesis &edge = *edges[currEdge];
const WordsRange &sourceRange = edge.GetCurrSourceWordsRange();