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