AI 24/25 Project Software
Documentation for the AI 24/25 course programming project software
Loading...
Searching...
No Matches
aliases.h
1#ifndef PROBFD_ALIASES_H
2#define PROBFD_ALIASES_H
3
4namespace probfd {
5
7using value_t = double;
8
9} // namespace probfd
10
11#endif // PROBFD_ALIASES_H
The top-level namespace of probabilistic Fast Downward.
Definition command_line.h:8
double value_t
Typedef for the state value type.
Definition aliases.h:7