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
7
class
SearchAlgorithm;
8
9
namespace
downward::cli {
10
11
extern
std::shared_ptr<SearchAlgorithm>
12
parse_cmd_line(
int
argc,
const
char
** argv,
bool
is_unit_cost);
13
14
extern
std::string
usage
(
const
std::string& progname);
15
16
}
// namespace downward::cli
17
18
#endif
probfd::usage
std::string usage(const std::string &progname)
Returns a string documenting usage of the planner. Receives the program name as input.
downward
cli
command_line.h
Generated on Tue Jan 7 2025 for AI 24/25 Project Software by
1.12.0