AI 24/25 Project Software
Documentation for the AI 24/25 course programming project software
Loading...
Searching...
No Matches
transition.h
1#ifndef PROBFD_TRANSITION_H
2#define PROBFD_TRANSITION_H
3
4#include "probfd/distribution.h"
5#include "probfd/types.h"
6
7namespace probfd {
8
9template <typename Action>
10struct Transition {
11 Action action;
12 Distribution<StateID> successor_dist;
13};
14
15} // namespace probfd
16
17#endif
The top-level namespace of probabilistic Fast Downward.
Definition command_line.h:8