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:
authorHieu Hoang <hieuhoang@gmail.com>2014-05-07 21:03:38 +0400
committerHieu Hoang <hieuhoang@gmail.com>2014-05-07 21:03:38 +0400
commit4b15ff28d6921a4a50c9880323b18093e972e5b4 (patch)
tree2ec63b10e722d2f3d1caadb6459bf9764be01079 /contrib/other-builds/extract-mixed-syntax
parentb5b58a978ff772e77ac478eb27688bae38d95191 (diff)
default value
Diffstat (limited to 'contrib/other-builds/extract-mixed-syntax')
-rw-r--r--contrib/other-builds/extract-mixed-syntax/Main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/other-builds/extract-mixed-syntax/Main.cpp b/contrib/other-builds/extract-mixed-syntax/Main.cpp
index 4cb5c92e6..4ef0b446a 100644
--- a/contrib/other-builds/extract-mixed-syntax/Main.cpp
+++ b/contrib/other-builds/extract-mixed-syntax/Main.cpp
@@ -36,7 +36,7 @@ int main(int argc, char** argv)
("MixedSyntaxType", po::value<int>()->default_value(params.mixedSyntaxType), "Hieu's Mixed syntax type. 0(default)=no mixed syntax, 1=add [X] only if no syntactic label. 2=add [X] everywhere")
("MultiLabel", po::value<int>()->default_value(params.multiLabel), "What to do with multiple labels on the same span. 0(default)=keep them all, 1=keep only top-most, 2=keep only bottom-most")
("HieroSourceLHS", "Always use Hiero source LHS? Default = 0")
- ("MaxSpanFreeNonTermSource", "Max number of words covered by beginning/end NT. Default = 0 (no limit)");
+ ("MaxSpanFreeNonTermSource", po::value<int>()->default_value(params.maxSpanFreeNonTermSource), "Max number of words covered by beginning/end NT. Default = 0 (no limit)");
po::variables_map vm;
try