1#ifndef DOWNWARD_PLUGINS_SEARCH_ALGORITHM_H
2#define DOWNWARD_PLUGINS_SEARCH_ALGORITHM_H
8enum OperatorCost :
unsigned short;
16namespace downward::cli::plugins {
21namespace downward::cli {
23extern void add_search_pruning_options_to_feature(plugins::Feature& feature);
25extern std::tuple<std::shared_ptr<PruningMethod>>
26get_search_pruning_arguments_from_options(
const plugins::Options& opts);
28extern void add_search_algorithm_options_to_feature(
29 plugins::Feature& feature,
30 const std::string& description);
32extern std::tuple<OperatorCost, int, double, std::string, utils::Verbosity>
33get_search_algorithm_arguments_from_options(
const plugins::Options& opts);
35extern void add_successors_order_options_to_feature(plugins::Feature& feature);
37extern std::tuple<bool, bool, int>
38get_successors_order_arguments_from_options(
const plugins::Options& opts);