#pragma once #include #include "src/builder/jit/DistributionEntry.h" namespace storm { namespace builder { namespace jit { template class Distribution { public: typedef std::vector> ContainerType; Distribution(); /*! * Adds the given entry to the distribution. */ void add(DistributionEntry const& entry); /*! * Adds the given entry to the distribution. */ void add(IndexType const& index, ValueType const& value); /*! * Adds the given other distribution to the distribution. */ void add(Distribution&& distribution); /*! * Compresses the internal storage by summing the values of entries which agree on the index. As a side * effect, this sorts the entries in the distribution by their index. */ void compress(); /*! * Divides all values in the distribution by the provided value. */ void divide(ValueType const& value); /*! * Access to iterators over the entries of the distribution. Note that there may be multiple entries for * the same index. Also, no order is guaranteed. After a call to compress, the order is guaranteed to be * ascending wrt. index and there are no elements with the same index. */ typename ContainerType::iterator begin(); typename ContainerType::const_iterator begin() const; typename ContainerType::iterator end(); typename ContainerType::const_iterator end() const; private: // The underlying storage of the distribution. ContainerType storage; bool compressed; }; } } }