blob: 94221201c3c0fb1cbc8b82b44ee4cec0b7dee1e6 (
plain)
1
2
3
4
5
6
|
#include "lm/max_order.hh"
#include <iostream>
int main(int argc, char *argv[]) {
std::cerr << "KenLM was compiled with a maximum supported n-gram order set to " << KENLM_MAX_ORDER << "." << std::endl;
}
|