#include "src/builder/DftExplorationHeuristic.h" #include "src/adapters/CarlAdapter.h" #include "src/utility/macros.h" #include "src/utility/constants.h" #include "src/exceptions/NotImplementedException.h" #include "src/storage/dft/DFTState.h" #include namespace storm { namespace builder { template DFTExplorationHeuristic::DFTExplorationHeuristic() : skip(true), depth(std::numeric_limits::max()), rate(storm::utility::zero()), exitRate(storm::utility::zero()) { // Intentionally left empty } template bool DFTExplorationHeuristic::isSkip(double approximationThreshold, ApproximationHeuristic heuristic) const { if (!skip) { return false; } switch (heuristic) { case ApproximationHeuristic::NONE: return false; case ApproximationHeuristic::DEPTH: return depth > approximationThreshold; case ApproximationHeuristic::RATERATIO: // TODO Matthias: implement STORM_LOG_THROW(false, storm::exceptions::NotImplementedException, "Heuristic rate ration does not work."); } } template void DFTExplorationHeuristic::setNotSkip() { skip = false; } template size_t DFTExplorationHeuristic::getDepth() const { return depth; } template void DFTExplorationHeuristic::setHeuristicValues(size_t depth, ValueType rate, ValueType exitRate) { this->depth = depth; this->rate = rate; this->exitRate = exitRate; } template double DFTExplorationHeuristic::getPriority() const { STORM_LOG_THROW(false, storm::exceptions::NotImplementedException, "Approximation works only for double."); } template<> double DFTExplorationHeuristic::getPriority() const { // TODO Matthias: change according to heuristic //return rate/exitRate; return depth; } template<> double DFTExplorationHeuristic::getPriority() const { STORM_LOG_THROW(false, storm::exceptions::NotImplementedException, "Approximation works only for double."); /*std::cout << (rate / exitRate) << " < " << threshold << ": " << (number < threshold) << std::endl; std::map mapping; storm::RationalFunction eval(number.evaluate(mapping)); std::cout << "Evaluated: " << eval << std::endl; return eval < threshold;*/ } template bool compareDepth(std::shared_ptr> stateA, std::shared_ptr> stateB) { return stateA->getPriority() > stateB->getPriority(); } template class DFTExplorationHeuristic; template bool compareDepth(std::shared_ptr>, std::shared_ptr>); #ifdef STORM_HAVE_CARL template class DFTExplorationHeuristic; template bool compareDepth(std::shared_ptr>, std::shared_ptr>); #endif } }