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:
authorRico Sennrich <rico.sennrich@gmx.ch>2013-09-08 01:04:01 +0400
committerRico Sennrich <rico.sennrich@gmx.ch>2013-09-08 01:04:01 +0400
commit7138056b8fd60b4572f016f038360dd5fb19a39c (patch)
treebb14de73775788233ff8aeb800da016365358826 /phrase-extract/RuleExtractionOptions.h
parentb27d140619ff7340d7cac26b9ab8fb368c460af7 (diff)
flexibility scores
Diffstat (limited to 'phrase-extract/RuleExtractionOptions.h')
-rw-r--r--phrase-extract/RuleExtractionOptions.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/phrase-extract/RuleExtractionOptions.h b/phrase-extract/RuleExtractionOptions.h
index d437c679c..a9b0ce9e6 100644
--- a/phrase-extract/RuleExtractionOptions.h
+++ b/phrase-extract/RuleExtractionOptions.h
@@ -54,6 +54,7 @@ public:
bool unpairedExtractFormat;
bool conditionOnTargetLhs;
bool boundaryRules;
+ bool flexScoreFlag;
RuleExtractionOptions()
: maxSpan(10)
@@ -86,8 +87,8 @@ public:
, gzOutput(false)
, unpairedExtractFormat(false)
, conditionOnTargetLhs(false)
- , boundaryRules(false) {
- }
+ , boundaryRules(false)
+ , flexScoreFlag(false) {}
};
}