Storm
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
StateStorage.cpp
Go to the documentation of this file.
2
3namespace storm {
4namespace storage {
5namespace sparse {
6
7template<typename StateType>
8StateStorage<StateType>::StateStorage(uint64_t bitsPerState) : stateToId(bitsPerState, 100000), bitsPerState(bitsPerState) {
9 // Intentionally left empty.
10}
11
12template<typename StateType>
14 return stateToId.size();
16
17template struct StateStorage<uint32_t>;
18template struct StateStorage<uint_fast64_t>;
19} // namespace sparse
20} // namespace storage
21} // namespace storm
LabParser.cpp.
Definition cli.cpp:18
StateStorage(uint64_t bitsPerState)