We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8d3276 commit c64b429Copy full SHA for c64b429
src/matcher.cc
@@ -22,6 +22,8 @@ std::vector<size_t> computeMatch(const CandidateString &subject, const Candidate
22
const auto subject_size = subject.size();
23
const auto query_size = query.size();
24
25
+ // TODO optimization for the case that the sizes are 1
26
+
27
// this is like the consecutive bonus, but for camelCase / snake_case initials
28
const auto acro = scoreAcronyms(subject, subject_lw, query, query_lw);
29
const auto acro_score = acro.score;
0 commit comments