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/InputPathBase.cpp')
-rw-r--r--contrib/moses2/InputPathBase.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/contrib/moses2/InputPathBase.cpp b/contrib/moses2/InputPathBase.cpp
new file mode 100644
index 000000000..034122cc2
--- /dev/null
+++ b/contrib/moses2/InputPathBase.cpp
@@ -0,0 +1,21 @@
+/*
+ * InputPath.cpp
+ *
+ * Created on: 23 Oct 2015
+ * Author: hieu
+ */
+#include <boost/foreach.hpp>
+#include "InputPathBase.h"
+#include "TranslationModel/PhraseTable.h"
+
+namespace Moses2
+{
+InputPathBase::InputPathBase(MemPool &pool,
+ const Range &range, size_t numPt, const InputPathBase *prefixPath) :
+ range(range), prefixPath(prefixPath)
+{
+
+}
+
+}
+