AI 24/25 Project Software
Documentation for the AI 24/25 course programming project software
Loading...
Searching...
No Matches
types.h
1#ifndef PROBFD_BISIMULATION_TYPES_H
2#define PROBFD_BISIMULATION_TYPES_H
3
6namespace probfd::bisimulation {
7
9enum class QuotientState : int {};
10
12enum class QuotientAction : int {};
13
14} // namespace probfd::bisimulation
15
16#endif
This namespace contains the implementation of deterministic bisimulation quotients for SSPs,...
Definition bisimilar_state_space.h:33
QuotientAction
Represents an action in the probabilistic bisimulation quotient.
Definition types.h:12
QuotientState
Represents a state in the probabilistic bisimulation quotient.
Definition types.h:9