output empty line even if no best hypothesis found

git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@1305 1f5c12ca-751b-0410-a591-d2e778427230
This commit is contained in:
hieuhoang1972 2007-03-14 19:47:51 +00:00
parent a83fe593c2
commit 8566962ecc

View File

@ -201,6 +201,10 @@ void IOStream::OutputBestHypo(const Hypothesis *hypo, long /*translationId*/, bo
else
{
VERBOSE(1, "NO BEST TRANSLATION" << endl);
if (!m_surpressSingleBestOutput)
{
cout << endl;
}
}
}