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