Browse Source

reduced the number of initial buckets for the hash map used in explicit model building

tempestpy_adaptions
dehnert 7 years ago
parent
commit
8646d614d4
  1. 2
      src/storm/storage/sparse/StateStorage.cpp

2
src/storm/storage/sparse/StateStorage.cpp

@ -5,7 +5,7 @@ namespace storm {
namespace sparse {
template <typename StateType>
StateStorage<StateType>::StateStorage(uint64_t bitsPerState) : stateToId(bitsPerState, 10000000), initialStateIndices(), deadlockStateIndices(), bitsPerState(bitsPerState) {
StateStorage<StateType>::StateStorage(uint64_t bitsPerState) : stateToId(bitsPerState, 100000), initialStateIndices(), deadlockStateIndices(), bitsPerState(bitsPerState) {
// Intentionally left empty.
}

Loading…
Cancel
Save