mosesdecoder/moses-cmd/TranslationAnalysis.h

25 lines
452 B
C
Raw Normal View History

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