// // RuleTableLoaderHiero.cpp // moses // // Created by Hieu Hoang on 04/11/2011. // Copyright 2011 __MyCompanyName__. All rights reserved. // #include #include "RuleTableLoaderHiero.h" using namespace std; namespace Moses { bool RuleTableLoaderHiero::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 &ruleTable) { bool ret = RuleTableLoaderStandard::Load(HieroFormat ,input, output ,inStream, weight ,tableLimit, languageModels ,wpProducer, ruleTable); return ret; } }