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/eppex/shared.h')
-rw-r--r--contrib/eppex/shared.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/contrib/eppex/shared.h b/contrib/eppex/shared.h
new file mode 100644
index 000000000..2ed70d336
--- /dev/null
+++ b/contrib/eppex/shared.h
@@ -0,0 +1,22 @@
+/**
+ * Declaration of functionality shared between counter, eppex and
+ * (not yet finished) memscoring eppex.
+ *
+ * (C) Moses: http://www.statmt.org/moses/
+ * (C) Ceslav Przywara, UFAL MFF UK, 2011
+ *
+ * $Id$
+ */
+
+#ifndef SHARED_H
+#define SHARED_H
+
+#include <string>
+
+std::string get_lossy_counting_params_format(void);
+
+bool parse_lossy_counting_params(const std::string& param);
+
+void read_optional_params(int argc, char* argv[], int optionalParamsStart);
+
+#endif