aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/fuzzy/explicit_levenshtein_dfa.cpp
blob: f78de5cc082bc237ddf395f47279a71a1cd04a96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include "explicit_levenshtein_dfa.hpp"

namespace vespalib::fuzzy {

template class ExplicitLevenshteinDfaImpl<1>;
template class ExplicitLevenshteinDfaImpl<2>;
template class ExplicitLevenshteinDfaBuilder<FixedMaxEditDistanceTraits<1>>;
template class ExplicitLevenshteinDfaBuilder<FixedMaxEditDistanceTraits<2>>;

}