#ifndef STORM_UTILITY_HASH_H_ #define STORM_UTILITY_HASH_H_ #include #include #include namespace storm { namespace utility { template class Hash { public: static std::size_t getHash(std::vector const& target) { return boost::hash_range(target.begin(), target.end()); } private: Hash() {} ~Hash() {} }; } } #endif // STORM_UTILITY_HASH_H_