mosesdecoder/moses-chart-cmd/TranslationAnalysis.h

25 lines
442 B
C
Raw Normal View History

// $Id$
/*
* also see moses/SentenceStats
*/
#ifndef _TRANSLATION_ANALYSIS_H_
#define _TRANSLATION_ANALYSIS_H_
#include <iostream>
2012-11-13 00:21:32 +04:00
#include "moses/ChartHypothesis.h"
namespace TranslationAnalysis
{
/**
* print details about the translation represented in hypothesis to
* os. Included information: phrase alignment, words dropped, scores
*/
void PrintTranslationAnalysis(std::ostream &os, const Moses::Hypothesis* hypo);
}
#endif