AI 24/25 Project Software
Documentation for the AI 24/25 course programming project software
Loading...
Searching...
No Matches
evaluator_options.h
1#ifndef DOWNWARD_PLUGINS_EVALUATOR_H
2#define DOWNWARD_PLUGINS_EVALUATOR_H
3
4#include <string>
5#include <tuple>
6
7namespace utils {
8enum class Verbosity;
9}
10
11namespace downward::cli::plugins {
12class Feature;
13class Options;
14} // namespace downward::cli::plugins
15
16namespace downward::cli {
17
18extern void add_evaluator_options_to_feature(
19 plugins::Feature& feature,
20 const std::string& description);
21
22extern std::tuple<std::string, utils::Verbosity>
23get_evaluator_arguments_from_options(const plugins::Options& opts);
24
25} // namespace downward::cli
26
27#endif