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