1#include "probfd/successor_samplers/most_likely_sampler.h"
3#include "probfd/distribution.h"
7template <
typename Action>
8StateID MostLikelySuccessorSampler<Action>::sample(
11 const Distribution<StateID>& successors,
12 algorithms::StateProperties&)
18 for (
const auto& [item, probability] : successors) {
19 if (probability > max) {
This namespace contains implementations of transition successor samplers.
Definition arbitrary_sampler.h:7
double value_t
Typedef for the state value type.
Definition aliases.h:7