00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef moses_RuleTableLoaderHiero_h
00010 #define moses_RuleTableLoaderHiero_h
00011
00012 #include "LoaderStandard.h"
00013
00014 namespace Moses {
00015
00017 class RuleTableLoaderHiero : public RuleTableLoaderStandard
00018 {
00019 public:
00020 bool Load(const std::vector<FactorType> &input,
00021 const std::vector<FactorType> &output,
00022 const std::string &inFile,
00023 size_t tableLimit,
00024 RuleTableTrie &);
00025
00026 };
00027
00028 }
00029
00030 #endif