aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/tensor/hash_set_visited_tracker.cpp
blob: b4a1cd471b9ca66fb3cc76985979e4da2f81077c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "hash_set_visited_tracker.h"

namespace search::tensor {

HashSetVisitedTracker::HashSetVisitedTracker(uint32_t, uint32_t estimated_visited_nodes)
    : _visited(estimated_visited_nodes)
{
}

HashSetVisitedTracker::~HashSetVisitedTracker() = default;

}