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:
Diffstat (limited to 'contrib/moses2/PhraseBased/Normal/Stack.h')
-rw-r--r--contrib/moses2/PhraseBased/Normal/Stack.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/contrib/moses2/PhraseBased/Normal/Stack.h b/contrib/moses2/PhraseBased/Normal/Stack.h
new file mode 100644
index 000000000..4ad707ce4
--- /dev/null
+++ b/contrib/moses2/PhraseBased/Normal/Stack.h
@@ -0,0 +1,32 @@
+/*
+ * Stack.h
+ *
+ * Created on: 24 Oct 2015
+ * Author: hieu
+ */
+#pragma once
+
+#include <boost/unordered_set.hpp>
+#include <deque>
+#include "../Hypothesis.h"
+#include "../../TypeDef.h"
+#include "../../HypothesisColl.h"
+#include "../../legacy/Util2.h"
+
+namespace Moses2
+{
+
+namespace NSNormal
+{
+class Stack: public HypothesisColl
+{
+public:
+ Stack(const Manager &mgr);
+ virtual ~Stack();
+
+protected:
+
+};
+
+}
+}