fix hypothesis debug output

git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@565 1f5c12ca-751b-0410-a591-d2e778427230
This commit is contained in:
redpony 2006-08-08 18:49:28 +00:00
parent d4128a7f8c
commit 56d9fcc7a2

View File

@ -443,7 +443,7 @@ ostream& operator<<(ostream& out, const Hypothesis& hypothesis)
out << "[" << hypothesis.m_sourceCompleted << "] ";
// scores
out << " [0.12, " << hypothesis.GetTotalScore() << "]";
out << " [total=" << hypothesis.GetTotalScore() << "]";
out << " " << hypothesis.GetScoreBreakdown();
return out;
}