AI 24/25 Project Software
Documentation for the AI 24/25 course programming project software
Loading...
Searching...
No Matches
arbitrary_tiebreaker_impl.h
1namespace probfd::policy_pickers {
2
3template <typename State, typename Action>
4ArbitraryTiebreaker<State, Action>::ArbitraryTiebreaker(bool stable_policy)
5 : ArbitraryTiebreaker::StablePolicyPicker(stable_policy)
6{
7}
8
9template <typename State, typename Action>
10int ArbitraryTiebreaker<State, Action>::pick_index(
11 MDP<State, Action>&,
12 std::optional<Action>,
13 const std::vector<Transition<Action>>&,
14 algorithms::StateProperties&)
15{
16 return 0;
17}
18
19} // namespace probfd::policy_pickers