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