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:
authorOndrej Bojar <bojar@ufal.mff.cuni.cz>2011-11-08 01:40:16 +0400
committerOndrej Bojar <bojar@ufal.mff.cuni.cz>2011-11-08 01:40:16 +0400
commit864001b9100d0b0c097acb32b5b73b25980c0bb5 (patch)
tree488e22f4f800768eda060f5f6355d5532bb89f0e /scripts
parent1c4be5675cbf227e89901d17c3b3cf3408a1ed9a (diff)
allow up to 400 words per sentence
Diffstat (limited to 'scripts')
-rw-r--r--scripts/training/symal/symal.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/training/symal/symal.cpp b/scripts/training/symal/symal.cpp
index 8f1bac05d..329e9e585 100644
--- a/scripts/training/symal/symal.cpp
+++ b/scripts/training/symal/symal.cpp
@@ -16,8 +16,8 @@
using namespace std;
#define MAX_WORD 10000 // maximum lengthsource/target strings
-#define MAX_M 200 // maximum length of source strings
-#define MAX_N 200 // maximum length of target strings
+#define MAX_M 400 // maximum length of source strings
+#define MAX_N 400 // maximum length of target strings
#define UNION 1
#define INTERSECT 2