Browse Source

Fixed compile problem with ull

tempestpy_adaptions
Matthias Volk 7 years ago
parent
commit
6ef8cf3042
  1. 2
      src/storm/storage/Scheduler.cpp

2
src/storm/storage/Scheduler.cpp

@ -96,7 +96,7 @@ namespace storm {
if (stateValuationsGiven) {
widthOfStates += model->getStateValuations().getStateInfo(schedulerChoices.front().size() - 1).length() + 5;
}
widthOfStates = std::max(widthOfStates, 12ull);
widthOfStates = std::max(widthOfStates, (uint_fast64_t)12);
uint_fast64_t numOfSkippedStatesWithUniqueChoice = 0;
out << "___________________________________________________________________" << std::endl;

Loading…
Cancel
Save