Browse Source

made member of Scheduler protected

This is possibly going to change again
tempestpy_adaptions
Stefan Pranger 4 years ago
parent
commit
1c03b4680a
  1. 3
      src/storm/storage/Scheduler.h

3
src/storm/storage/Scheduler.h

@ -121,13 +121,12 @@ namespace storm {
void setPrintUndefinedChoices(bool value = true);
private:
protected:
boost::optional<storm::storage::MemoryStructure> memoryStructure;
std::vector<std::vector<SchedulerChoice<ValueType>>> schedulerChoices;
bool printUndefinedChoices = false;
protected:
uint_fast64_t numOfUndefinedChoices;
uint_fast64_t numOfDeterministicChoices;
};

Loading…
Cancel
Save