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