diff options
author | graehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-07-27 04:59:37 +0000 |
---|---|---|
committer | graehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-07-27 04:59:37 +0000 |
commit | 9f34384f610e512488df4bb0f08e962ad95d6d13 (patch) | |
tree | 6a91597be780d1460dc2f92e58452a56e745dd18 /decoder/ff_factory.cc | |
parent | cd24c0b69bbfe3218fc8ad50f0729f388b23cc2a (diff) |
fsa feature templated Accum interface, phrase interface allows exceeding markov order e.g. unigram state, 3gram lm. use Accum,set_value rather than clear,add_value. warning: 3gram fsa lm disagrees with bottom-up in 4th decimal place
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@431 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'decoder/ff_factory.cc')
-rw-r--r-- | decoder/ff_factory.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoder/ff_factory.cc b/decoder/ff_factory.cc index aec82d38..88991fbf 100644 --- a/decoder/ff_factory.cc +++ b/decoder/ff_factory.cc @@ -43,7 +43,7 @@ shared_ptr<FeatureFunction> FFRegistry::Create(const string& ffname, const strin } res = it->second->Create(p); res->name=ffname; - res->debug=debug; + res->debug_=debug; } return res; } |