mirror of
https://github.com/privacore/open-source-search-engine.git
synced 2025-01-22 02:18:42 -05:00
11 lines
192 B
C++
11 lines
192 B
C++
#include "Lemma.h"
|
|
#include "Lexicons.h"
|
|
|
|
|
|
sto::Lexicon *lemma_lexicon = nullptr;
|
|
|
|
bool load_lemma_lexicon() {
|
|
lemma_lexicon = getLexicon("lexicon_da.sto");
|
|
return lemma_lexicon!=nullptr;
|
|
}
|