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-29 03:11:06 +0300
committerHieu Hoang <hieuhoang@gmail.com>2014-12-29 03:11:06 +0300
commitec3db7bede3c55c157d2176823cb239c1ddedcca (patch)
tree0ff487dacad126dee7af241749bc44f2e63ac647 /moses/Manager.h
parent2b7c16d5a4b373f11ab7756be84fa49086c9e5a9 (diff)
move OutputLatticeMBRNBest() to Manager class
Diffstat (limited to 'moses/Manager.h')
-rw-r--r--moses/Manager.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/moses/Manager.h b/moses/Manager.h
index 884241dfc..fb5393d7c 100644
--- a/moses/Manager.h
+++ b/moses/Manager.h
@@ -42,6 +42,7 @@ namespace Moses
class SentenceStats;
class TrellisPath;
class TranslationOptionCollection;
+class LatticeMBRSolution;
/** Used to output the search graph */
struct SearchGraphNode {
@@ -200,6 +201,8 @@ public:
void OutputSearchGraphSLF() const;
void OutputSearchGraphHypergraph() const;
+ static void OutputLatticeMBRNBest(std::ostream& out, const std::vector<LatticeMBRSolution>& solutions,long translationId);
+
};
}