namespace storm { namespace pomdp { // Structure used to represent a belief template struct Belief { uint64_t id; uint32_t observation; //TODO make this sparse? std::map probabilities; }; } }