AI 24/25 Project Software
Documentation for the AI 24/25 course programming project software
Loading...
Searching...
No Matches
command_line.h
1#ifndef COMMAND_LINE_H
2#define COMMAND_LINE_H
3
4#include <memory>
5#include <string>
6
7class SearchAlgorithm;
9namespace downward::cli {
10
11extern std::shared_ptr<SearchAlgorithm>
12parse_cmd_line(int argc, const char** argv, bool is_unit_cost);
13
14extern std::string usage(const std::string& progname);
15
16} // namespace downward::cli
17
18#endif
std::string usage(const std::string &progname)
Returns a string documenting usage of the planner. Receives the program name as input.