diff options
author | redpony <redpony@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-10-20 03:07:39 +0000 |
---|---|---|
committer | redpony <redpony@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-10-20 03:07:39 +0000 |
commit | e6c49facea8bc83f348e112872a837048b5ca6ad (patch) | |
tree | 3ff3ed660b47113c1603b23bca8c20fc677d2ec9 /decoder | |
parent | 44b9b1b1021f946d08cc65baab919e2a6de787c8 (diff) |
fix typo
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@684 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'decoder')
-rw-r--r-- | decoder/lextrans.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoder/lextrans.cc b/decoder/lextrans.cc index 3fcd1a7d..1921f280 100644 --- a/decoder/lextrans.cc +++ b/decoder/lextrans.cc @@ -12,7 +12,7 @@ using namespace std; struct LexicalTransImpl { LexicalTransImpl(const boost::program_options::variables_map& conf) : - use_null(conf.count("lexcrf_use_null") > 0), + use_null(conf.count("lextrans_use_null") > 0), kXCAT(TD::Convert("X")*-1), kNULL(TD::Convert("<eps>")), kBINARY(new TRule("[X] ||| [X,1] [X,2] ||| [1] [2]")), |