SOLA
Loading...
Searching...
No Matches
evaluation_information.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_ESEARCH_EVALUATION_INFORMATION_H_
8#define MINHTON_ALGORITHMS_ESEARCH_EVALUATION_INFORMATION_H_
9
10#include <cstdint>
11
13 uint64_t validity_threshold_timestamp = 0;
14 bool all_information_present = false;
15 bool inquire_unknown_attributes = false;
16 bool inquire_outdated_attributes = false;
17 bool permissive = false; // only relevant if inquire_outdated_attributes=false
18};
19
20#endif
Definition evaluation_information.h:12