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