SOLA
Loading...
Searching...
No Matches
definitions.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_CORE_DEFINITIONS_H_
8#define MINHTON_CORE_DEFINITIONS_H_
9
10#include <string>
11#include <tuple>
12#include <variant>
13#include <vector>
14
15#include "minhton/algorithms/esearch/node_data.h" // TODO: Move needed parts into this header
16
17namespace minhton {
18using Entry = std::tuple<std::string, std::variant<int, float, bool, std::string>,
19 minhton::NodeData::ValueType>;
20using FindResult = std::vector<std::vector<Entry>>;
21} // namespace minhton
22
23#endif
Definition minhton_watchdog_ns3.cpp:24