diff options
author | Wu, Ke <wuke@cs.umd.edu> | 2014-12-11 18:52:08 -0500 |
---|---|---|
committer | Wu, Ke <wuke@cs.umd.edu> | 2014-12-11 18:52:08 -0500 |
commit | 1a93e0e464b0dbaf89bd00c8d1b5da2249bdc886 (patch) | |
tree | 9324bc3d5ea7be2332566ff8778041e240760314 /decoder/cdec_ff.cc | |
parent | 79aa8729182d7ac2c899346f664771f08b7ce451 (diff) | |
parent | b1e5513ab3012fa58713a64710a641f42161f9d5 (diff) |
Merge branch 'const_reorder_no_state' into const_reorder_2
Diffstat (limited to 'decoder/cdec_ff.cc')
-rw-r--r-- | decoder/cdec_ff.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/decoder/cdec_ff.cc b/decoder/cdec_ff.cc index 7f7e075b..6f7227aa 100644 --- a/decoder/cdec_ff.cc +++ b/decoder/cdec_ff.cc @@ -3,6 +3,7 @@ #include "ff.h" #include "ff_basic.h" #include "ff_context.h" +#include "ff_const_reorder.h" #include "ff_spans.h" #include "ff_lm.h" #include "ff_klm.h" @@ -77,6 +78,6 @@ void register_feature_functions() { ff_registry.Register("WordPairFeatures", new FFFactory<WordPairFeatures>); ff_registry.Register("SourcePathFeatures", new FFFactory<SourcePathFeatures>); ff_registry.Register("WordSet", new FFFactory<WordSet>); + ff_registry.Register("ConstReorderFeature", new FFFactory<ConstReorderFeature>); ff_registry.Register("External", new FFFactory<ExternalFeature>); } - |