Browse Source

remove debug output

Former-commit-id: 0ae7597785
tempestpy_adaptions
dehnert 9 years ago
parent
commit
5616004e6e
  1. 3
      src/modelchecker/results/ExplicitQuantitativeCheckResult.cpp

3
src/modelchecker/results/ExplicitQuantitativeCheckResult.cpp

@ -60,10 +60,7 @@ namespace storm {
if (this->isResultForAllStates()) {
map_type newMap;
std::cout << filterTruthValues << std::endl;
for (auto const& element : filterTruthValues) {
std::cout << element << std::endl;
std::cout << this->getValueVector().size() << std::endl;
STORM_LOG_THROW(element < this->getValueVector().size(), storm::exceptions::InvalidAccessException, "Invalid index in results.");
newMap.emplace(element, this->getValueVector()[element]);
}
Loading…
Cancel
Save