#include "storm/utility/VectorHelper.h" #include "storm/settings/SettingsManager.h" #include "storm/settings/modules/CoreSettings.h" #include "storm/adapters/RationalNumberAdapter.h" #include "storm/adapters/RationalFunctionAdapter.h" #include "storm-config.h" #include "storm/utility/vector.h" #include "storm/utility/macros.h" #include "storm/exceptions/InvalidSettingsException.h" #include "storm/exceptions/NotSupportedException.h" namespace storm { namespace utility { template VectorHelper::VectorHelper() : doParallelize(storm::settings::getModule().isUseIntelTbbSet()) { #ifndef STORM_HAVE_INTELTBB STORM_LOG_THROW(!doParallelize, storm::exceptions::InvalidSettingsException, "Cannot parallelize without TBB."); #endif } template bool VectorHelper::parallelize() const { return doParallelize; } template void VectorHelper::reduceVector(storm::solver::OptimizationDirection dir, std::vector const& source, std::vector& target, std::vector const& rowGrouping, std::vector* choices) const { #ifdef STORM_HAVE_INTELTBB if (this->parallelize()) { storm::utility::vector::reduceVectorMinOrMaxParallel(dir, source, target, rowGrouping, choices); } else { storm::utility::vector::reduceVectorMinOrMax(dir, source, target, rowGrouping, choices); } #else storm::utility::vector::reduceVectorMinOrMax(dir, source, target, rowGrouping, choices); #endif } template<> void VectorHelper::reduceVector(storm::solver::OptimizationDirection, std::vector const&, std::vector&, std::vector const&, std::vector*) const { STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "This operation is not supported."); } template class VectorHelper; #ifdef STORM_HAVE_CARL template class VectorHelper; template class VectorHelper; #endif } }