AI 24/25 Project Software
Documentation for the AI 24/25 course programming project software
Loading...
Searching...
No Matches
cegar_options.h
1#ifndef DOWNWARD_PLUGINS_PDBS_CEGAR_H
2#define DOWNWARD_PLUGINS_PDBS_CEGAR_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_cegar_implementation_notes_to_feature(plugins::Feature& feature);
15
16extern void add_cegar_wildcard_option_to_feature(plugins::Feature& feature);
17
18std::tuple<bool>
19get_cegar_wildcard_arguments_from_options(const plugins::Options& opts);
20
21} // namespace downward::cli::pdbs
22
23#endif