diff options
Diffstat (limited to 'src/cdec_ff.cc')
-rw-r--r-- | src/cdec_ff.cc | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/cdec_ff.cc b/src/cdec_ff.cc deleted file mode 100644 index 0a4f3d5e..00000000 --- a/src/cdec_ff.cc +++ /dev/null @@ -1,22 +0,0 @@ -#include <boost/shared_ptr.hpp> - -#include "ff.h" -#include "ff_lm.h" -#include "ff_csplit.h" -#include "ff_wordalign.h" -#include "ff_factory.h" - -boost::shared_ptr<FFRegistry> global_ff_registry; - -void register_feature_functions() { - global_ff_registry->Register("LanguageModel", new FFFactory<LanguageModel>); - global_ff_registry->Register("WordPenalty", new FFFactory<WordPenalty>); - global_ff_registry->Register("SourceWordPenalty", new FFFactory<SourceWordPenalty>); - global_ff_registry->Register("RelativeSentencePosition", new FFFactory<RelativeSentencePosition>); - global_ff_registry->Register("MarkovJump", new FFFactory<MarkovJump>); - global_ff_registry->Register("BlunsomSynchronousParseHack", new FFFactory<BlunsomSynchronousParseHack>); - global_ff_registry->Register("AlignerResults", new FFFactory<AlignerResults>); - global_ff_registry->Register("CSplit_BasicFeatures", new FFFactory<BasicCSplitFeatures>); - global_ff_registry->Register("CSplit_ReverseCharLM", new FFFactory<ReverseCharLMCSplitFeature>); -}; - |