AI 24/25 Project Software
Documentation for the AI 24/25 course programming project software
Loading...
Searching...
No Matches
not_implemented.h
1
2#ifndef PROBFD_UTILS_NOT_IMPLEMENTED_H
3#define PROBFD_UTILS_NOT_IMPLEMENTED_H
4
5#include <source_location>
6#include <string>
7
8namespace probfd {
9
10[[noreturn]]
11extern void not_implemented(
12 const std::source_location& source_location =
13 std::source_location::current());
14
15} // namespace probfd
16
17#endif
The top-level namespace of probabilistic Fast Downward.
Definition command_line.h:8