AI 24/25 Project Software
Documentation for the AI 24/25 course programming project software
Loading...
Searching...
No Matches
arbitrary_sampler_impl.h
1#include "probfd/successor_samplers/arbitrary_sampler.h"
2
3#include "probfd/distribution.h"
4
6
7template <typename Action>
8StateID ArbitrarySuccessorSampler<Action>::sample(
9 StateID,
10 Action,
11 const Distribution<StateID>& successors,
12 algorithms::StateProperties&)
13{
14 return successors.begin()->item;
15}
16
17} // namespace probfd::successor_samplers
This namespace contains implementations of transition successor samplers.
Definition arbitrary_sampler.h:7