Browse Source

fixed some changes which have been overwritten

tempestpy_adaptions
Stefan Pranger 3 years ago
parent
commit
d53fafa078
  1. 4
      src/storm/storage/Scheduler.cpp
  2. 3
      src/storm/storage/Scheduler.h

4
src/storm/storage/Scheduler.cpp

@ -323,9 +323,9 @@ namespace storm {
} }
} }
if (numOfSkippedStatesWithUniqueChoice > 0) { if (numOfSkippedStatesWithUniqueChoice > 0) {
stateString << "Skipped " << numOfSkippedStatesWithUniqueChoice << " deterministic states with unique choice." << std::endl;
out << "Skipped " << numOfSkippedStatesWithUniqueChoice << " deterministic states with unique choice." << std::endl;
} }
stateString << "___________________________________________________________________" << std::endl;
out << "___________________________________________________________________" << std::endl;
} }

3
src/storm/storage/Scheduler.h

@ -143,8 +143,9 @@ namespace storm {
* Prints the scheduler in json format to the given output stream. * Prints the scheduler in json format to the given output stream.
*/ */
void printJsonToStream(std::ostream& out, std::shared_ptr<storm::models::sparse::Model<ValueType>> model = nullptr, bool skipUniqueChoices = false, bool skipDontCareStates = false) const; void printJsonToStream(std::ostream& out, std::shared_ptr<storm::models::sparse::Model<ValueType>> model = nullptr, bool skipUniqueChoices = false, bool skipDontCareStates = false) const;
void setPrintUndefinedChoices(bool value);
private:
protected:
boost::optional<storm::storage::MemoryStructure> memoryStructure; boost::optional<storm::storage::MemoryStructure> memoryStructure;
std::vector<std::vector<SchedulerChoice<ValueType>>> schedulerChoices; std::vector<std::vector<SchedulerChoice<ValueType>>> schedulerChoices;

Loading…
Cancel
Save