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