aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/fuzzy/explicit_levenshtein_dfa.cpp
blob: b6dd03242be94bb0d0d519ae6a20b5337904b225 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright Vespa.ai. 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>>;

}