#ifndef STORM_GENERATOR_CHOICE_H_ #define STORM_GENERATOR_CHOICE_H_ #include #include #include #include #include "src/storage/Distribution.h" namespace storm { namespace generator { // A structure holding information about a particular choice. template struct Choice { public: typedef boost::container::flat_set LabelSet; Choice(uint_fast64_t actionIndex = 0, bool markovian = false); Choice(Choice const& other) = default; Choice& operator=(Choice const& other) = default; Choice(Choice&& other) = default; Choice& operator=(Choice&& other) = default; /*! * Returns an iterator to the distribution associated with this choice. * * @return An iterator to the first element of the distribution. */ typename storm::storage::Distribution::iterator begin(); /*! * Returns an iterator to the distribution associated with this choice. * * @return An iterator to the first element of the distribution. */ typename storm::storage::Distribution::const_iterator begin() const; /*! * Returns an iterator past the end of the distribution associated with this choice. * * @return An iterator past the end of the distribution. */ typename storm::storage::Distribution::iterator end(); /*! * Returns an iterator past the end of the distribution associated with this choice. * * @return An iterator past the end of the distribution. */ typename storm::storage::Distribution::const_iterator end() const; /*! * Inserts the contents of this object to the given output stream. * * @param out The stream in which to insert the contents. */ template friend std::ostream& operator<<(std::ostream& out, Choice const& choice); /*! * Adds the given label to the labels associated with this choice. * * @param label The label to associate with this choice. */ void addChoiceLabel(uint_fast64_t label); /*! * Adds the given label set to the labels associated with this choice. * * @param labelSet The label set to associate with this choice. */ void addChoiceLabels(LabelSet const& labelSet); /*! * Retrieves the set of labels associated with this choice. * * @return The set of labels associated with this choice. */ LabelSet const& getChoiceLabels() const; /*! * Retrieves the index of the action of this choice. * * @return The index of the action of this choice. */ uint_fast64_t getActionIndex() const; /*! * Retrieves the total mass of this choice. * * @return The total mass. */ ValueType getTotalMass() const; /*! * Adds the given probability value to the given state in the underlying distribution. */ void addProbability(StateType const& state, ValueType const& value); /*! * Adds the given value to the reward associated with this choice. */ void addChoiceReward(ValueType const& value); /*! * Retrieves the rewards for this choice under selected reward models. */ std::vector const& getChoiceRewards() const; /*! * Retrieves whether the choice is Markovian. */ bool isMarkovian() const; /*! * Retrieves the size of the distribution associated with this choice. */ std::size_t size() const; private: // A flag indicating whether this choice is Markovian or not. bool markovian; // The action index associated with this choice. uint_fast64_t actionIndex; // The distribution that is associated with the choice. storm::storage::Distribution distribution; // The total probability mass (or rates) of this choice. ValueType totalMass; // The reward values associated with this choice. std::vector choiceRewards; // The labels that are associated with this choice. boost::optional choiceLabels; }; template std::ostream& operator<<(std::ostream& out, Choice const& choice); } } #endif /* STORM_GENERATOR_CHOICE_H_ */