mosesdecoder/moses-cmd/TranslationAnalysis.h
2012-11-12 20:42:29 +00:00

26 lines
529 B
C++

// $Id$
/*
* also see moses/SentenceStats
*/
#ifndef moses_cmd_TranslationAnalysis_h
#define moses_cmd_TranslationAnalysis_h
#include <iostream>
#include "moses/Hypothesis.h"
#include "moses/TranslationSystem.h"
namespace TranslationAnalysis
{
/***
* print details about the translation represented in hypothesis to
* os. Included information: phrase alignment, words dropped, scores
*/
void PrintTranslationAnalysis(const Moses::TranslationSystem* system, std::ostream &os, const Moses::Hypothesis* hypo);
}
#endif