mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-01 00:12:27 +03:00
67dd80fb7b
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@3897 1f5c12ca-751b-0410-a591-d2e778427230
26 lines
517 B
C++
26 lines
517 B
C++
// $Id$
|
|
|
|
/*
|
|
* also see moses/SentenceStats
|
|
*/
|
|
|
|
#ifndef moses_cmd_TranslationAnalysis_h
|
|
#define moses_cmd_TranslationAnalysis_h
|
|
|
|
#include <iostream>
|
|
#include "Hypothesis.h"
|
|
#include "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
|