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