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 <hieu@hoang.co.uk>2014-05-08 20:51:45 +0400
committerHieu Hoang <hieu@hoang.co.uk>2014-05-08 20:51:45 +0400
commit15566f7fc543047b0d3358541de0a384ff4adace (patch)
treec186a520b0aaf5f83c1f68115a9a043befda4216 /moses/StackVec.h
parent3ef5d76860d060d6cc3b0df2070d8d722ba87d31 (diff)
extend FF framework by add StackVec* argument to 2nd Evaluate(). NULL if phrase-based
Diffstat (limited to 'moses/StackVec.h')
-rw-r--r--moses/StackVec.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/moses/StackVec.h b/moses/StackVec.h
index 07c508c38..40635c7c5 100644
--- a/moses/StackVec.h
+++ b/moses/StackVec.h
@@ -26,6 +26,9 @@ namespace Moses
class ChartCellLabel;
-typedef std::vector<const ChartCellLabel*> StackVec;
+class StackVec : public std::vector<const ChartCellLabel*>
+{
+
+};
}