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