Storm 1.11.1.1
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
BeliefSupportTracker.h
Go to the documentation of this file.
1#pragma once
2
5
6namespace storm {
7namespace generator {
8template<typename ValueType>
15 public:
27 void track(uint64_t action, uint64_t observation);
31 void reset();
32
33 private:
35 storm::storage::BitVector currentBeliefSupport;
36};
37} // namespace generator
38} // namespace storm
storm::storage::BitVector const & getCurrentBeliefSupport() const
The current belief support according to the tracker.
void track(uint64_t action, uint64_t observation)
Update current belief support state.
This class represents a partially observable Markov decision process.
Definition Pomdp.h:13
A bit vector that is internally represented as a vector of 64-bit values.
Definition BitVector.h:16