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