|
|
@ -333,8 +333,8 @@ namespace storm { |
|
|
|
* @param finalizeOutput A flag that sets whether or not the dot stream is closed with a curly brace. |
|
|
|
* @return A string containing the exported model in dot-format. |
|
|
|
*/ |
|
|
|
virtual void writeDotToStream(std::ostream& outStream, size_t maxWidthLabel = 30, bool includeLabeling = true, storm::storage::BitVector const* subsystem = nullptr, std::vector<ValueType> const* firstValue = nullptr, std::vector<ValueType> const* secondValue = nullptr, std::vector<uint_fast64_t> const* stateColoring = nullptr, std::vector<std::string> const* colors = nullptr, std::vector<uint_fast64_t>* scheduler = nullptr, bool finalizeOutput = true) const; |
|
|
|
|
|
|
|
virtual void writeDotToStream(std::ostream& outStream, size_t maxWidthLabel = 30, bool includeLabeling = true, storm::storage::BitVector const* subsystem = nullptr, std::vector<ValueType> const* firstValue = nullptr, std::vector<ValueType> const* secondValue = nullptr, std::vector<uint64_t> const* stateColoring = nullptr, std::vector<std::string> const* colors = nullptr, std::vector<uint_fast64_t>* scheduler = nullptr, bool finalizeOutput = true) const; |
|
|
|
|
|
|
|
/*! |
|
|
|
* Retrieves the set of labels attached to the given state. |
|
|
|
* |
|
|
@ -394,6 +394,13 @@ namespace storm { |
|
|
|
* @param out The stream the information is to be printed to. |
|
|
|
*/ |
|
|
|
void printRewardModelsInformationToStream(std::ostream& out) const; |
|
|
|
|
|
|
|
/*! |
|
|
|
* Return a string that is additonally added to the state information in the dot stream. |
|
|
|
* @param state |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
virtual std::string additionalDotStateInfo(uint64_t state) const; |
|
|
|
|
|
|
|
private: |
|
|
|
|
|
|
|