AI 24/25 Project Software
Documentation for the AI 24/25 course programming project software
Loading...
Searching...
No Matches
canonical_pdbs_heuristic_options.h
1#ifndef DOWNWARD_PLUGINS_PDBS_CANONICAL_PDBS_HEURISTIC_H
2#define DOWNWARD_PLUGINS_PDBS_CANONICAL_PDBS_HEURISTIC_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
13void add_canonical_pdbs_options_to_feature(plugins::Feature& feature);
14
15std::tuple<double>
16get_canonical_pdbs_arguments_from_options(const plugins::Options& opts);
17
18} // namespace downward::cli::pdbs
19
20#endif