Skip to content

Commit

Permalink
Revert back to the Faida algorithm in FaidaTests
Browse files Browse the repository at this point in the history
In commit 6af5c4a, the algorithm was mistakenly changed to
`Mind` during refactoring. This reverts the algorithm back to
`Faida`, as originally intended.
  • Loading branch information
vs9h authored and chernishev committed Oct 4, 2024
1 parent 161409e commit dd4b04e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/test_faida.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class FaidaINDAlgorithmTest : public ::testing::Test {
static std::unique_ptr<algos::INDAlgorithm> CreateFaidaInstance(CSVConfigs const& csv_configs,
Config const& config) {
using namespace config::names;
return algos::CreateAndLoadAlgorithm<algos::Mind>(algos::StdParamsMap{
return algos::CreateAndLoadAlgorithm<algos::Faida>(algos::StdParamsMap{
{kCsvConfigs, csv_configs},
{kSampleSize, config.sample_size},
{kHllAccuracy, config.hll_accuracy},
Expand Down

0 comments on commit dd4b04e

Please sign in to comment.