// // RuleTableLoaderHiero.h // moses // // Created by Hieu Hoang on 04/11/2011. // Copyright 2011 __MyCompanyName__. All rights reserved. // #ifndef moses_RuleTableLoaderHiero_h #define moses_RuleTableLoaderHiero_h #include "RuleTableLoaderStandard.h" namespace Moses { class RuleTableLoaderHiero : public RuleTableLoaderStandard { public: bool Load(const std::vector &input, const std::vector &output, std::istream &inStream, const std::vector &weight, size_t tableLimit, const LMList &languageModels, const WordPenaltyProducer* wpProducer, PhraseDictionarySCFG &); }; } #endif