AI 24/25 Project Software
Documentation for the AI 24/25 course programming project software
Loading...
Searching...
No Matches
command_line.h
1#ifndef PROBFD_COMMAND_LINE_H
2#define PROBFD_COMMAND_LINE_H
3
4#include <memory>
5#include <string>
6
7// Forward Declarations
8namespace probfd {
9class SolverInterface;
10}
11
12namespace probfd {
13
14extern std::shared_ptr<SolverInterface>
15parse_cmd_line(int argc, const char** argv, bool is_unit_cost);
16
19extern std::string usage(const std::string& progname);
20
21} // namespace probfd
22
23#endif
The top-level namespace of probabilistic Fast Downward.
Definition command_line.h:8
std::string usage(const std::string &progname)
Returns a string documenting usage of the planner. Receives the program name as input.