Skip to content

Commit

Permalink
Added some explicit template instantiations which are required by som…
Browse files Browse the repository at this point in the history
…e tests. (#435)
  • Loading branch information
joka921 committed Jul 20, 2021
1 parent c016824 commit 62058e2
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/index/FTSAlgorithms.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -495,6 +495,21 @@ template void FTSAlgorithms::aggScoresAndTakeTopContext<4>(
template void FTSAlgorithms::aggScoresAndTakeTopContext<5>(
const vector<Id>& cids, const vector<Id>& eids, const vector<Score>& scores,
IdTable* dynResult);
template void FTSAlgorithms::aggScoresAndTakeTopContext<6>(
const vector<Id>& cids, const vector<Id>& eids, const vector<Score>& scores,
IdTable* dynResult);
template void FTSAlgorithms::aggScoresAndTakeTopContext<7>(
const vector<Id>& cids, const vector<Id>& eids, const vector<Score>& scores,
IdTable* dynResult);
template void FTSAlgorithms::aggScoresAndTakeTopContext<8>(
const vector<Id>& cids, const vector<Id>& eids, const vector<Score>& scores,
IdTable* dynResult);
template void FTSAlgorithms::aggScoresAndTakeTopContext<9>(
const vector<Id>& cids, const vector<Id>& eids, const vector<Score>& scores,
IdTable* dynResult);
template void FTSAlgorithms::aggScoresAndTakeTopContext<10>(
const vector<Id>& cids, const vector<Id>& eids, const vector<Score>& scores,
IdTable* dynResult);

// _____________________________________________________________________________
template <int WIDTH>
Expand Down

0 comments on commit 62058e2

Please sign in to comment.