Browse Source

Fixed compile problem with ull

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

4
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;
@ -184,4 +184,4 @@ namespace storm {
template class Scheduler<storm::RationalFunction>;
}
}
}
Loading…
Cancel
Save