SOLA
Loading...
Searching...
No Matches
minhton_search_exact_algorithm.h
1// Copyright The SOLA Contributors
2//
3// Licensed under the MIT License.
4// For details on the licensing terms, see the LICENSE file.
5// SPDX-License-Identifier: MIT
6
7#ifndef MINHTON_ALGORITHMS_SEARCHEXACT_MINHTON_SEARCH_EXACT_ALGORITHM_H_
8#define MINHTON_ALGORITHMS_SEARCHEXACT_MINHTON_SEARCH_EXACT_ALGORITHM_H_
9
10#include <memory>
11
12#include "minhton/algorithms/search_exact/search_exact_algorithm_general.h"
13#include "minhton/message/message.h"
14#include "minhton/message/search_exact.h"
15
16namespace minhton {
17
19public:
20 explicit MinhtonSearchExactAlgorithm(std::shared_ptr<AccessContainer> access)
22
23 ~MinhtonSearchExactAlgorithm() override = default;
24
41 minhton::NodeInfo calcClosestRedirect(double dest_value) override;
42};
43
44} // namespace minhton
45
46#endif
Definition minhton_search_exact_algorithm.h:18
minhton::NodeInfo calcClosestRedirect(double dest_value) override
Definition minhton_search_exact_algorithm.cpp:15
Definition node_info.h:24
Definition search_exact_algorithm_general.h:20
Definition minhton_watchdog_ns3.cpp:24