mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-26 21:42:19 +03:00
20 lines
386 B
C++
20 lines
386 B
C++
#include "lm/virtual_interface.hh"
|
|
|
|
#include "lm/lm_exception.hh"
|
|
|
|
namespace lm {
|
|
namespace base {
|
|
|
|
Vocabulary::~Vocabulary() {}
|
|
|
|
void Vocabulary::SetSpecial(WordIndex begin_sentence, WordIndex end_sentence, WordIndex not_found) {
|
|
begin_sentence_ = begin_sentence;
|
|
end_sentence_ = end_sentence;
|
|
not_found_ = not_found;
|
|
}
|
|
|
|
Model::~Model() {}
|
|
|
|
} // namespace base
|
|
} // namespace lm
|