#ifndef SEARCH_RULE__ #define SEARCH_RULE__ #include "lm/left.hh" #include "lm/word_index.hh" #include "search/types.hh" #include namespace search { template class Context; const lm::WordIndex kNonTerminal = lm::kMaxWordIndex; template float ScoreRule(const Context &context, const std::vector &words, bool prepend_bos, lm::ngram::ChartState *state_out); } // namespace search #endif // SEARCH_RULE__