Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHieu Hoang <hieuhoang@gmail.com>2014-12-10 14:28:47 +0300
committerHieu Hoang <hieuhoang@gmail.com>2014-12-10 14:28:47 +0300
commit99cfba8769cc84416c953693f7ccdf98c688423e (patch)
tree501d595cd5f6f448bcb71a38899fa2224c7a7a4a /moses/Incremental.h
parentfad3ef687a2ed3c40c6da5e9909a9576cb5cb3a3 (diff)
move OutputBest() to Incremental::Manager
Diffstat (limited to 'moses/Incremental.h')
-rw-r--r--moses/Incremental.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/moses/Incremental.h b/moses/Incremental.h
index 1115884ee..1f5eba86a 100644
--- a/moses/Incremental.h
+++ b/moses/Incremental.h
@@ -40,6 +40,7 @@ public:
}
// output
+ void OutputBest(OutputCollector *collector) const;
void OutputNBest(OutputCollector *collector) const;
void OutputDetailedTranslationReport(OutputCollector *collector) const;
void OutputNBestList(OutputCollector *collector, const std::vector<search::Applied> &nbest, long translationId) const;
@@ -98,6 +99,8 @@ private:
const search::Applied *applied,
const Sentence &sentence,
long translationId) const;
+ void OutputBestHypo(OutputCollector *collector, search::Applied applied, long translationId) const;
+ void OutputBestNone(OutputCollector *collector, long translationId) const;
};