Browse Source

fixed output

tempestpy_adaptions
TimQu 8 years ago
parent
commit
0283e402ad
  1. 5
      src/storm/utility/storm.h

5
src/storm/utility/storm.h

@ -364,9 +364,8 @@ namespace storm {
} }
} }
STORM_PRINT_AND_LOG("Done! Found " << numOfSatRegions << " safe regions, "
<< numOfUnsatRegions << " unsafe regions, and "
<< result.size() - numOfSatRegions - numOfUnsatRegions << " unknown regions." << std::endl);
STORM_PRINT_AND_LOG("Done! Found " << numOfSatRegions << " safe regions and "
<< numOfUnsatRegions << " unsafe regions." << std::endl);
STORM_PRINT_AND_LOG(storm::utility::convertNumber<double>(satArea / parameterSpace.area()) * 100 << "% of the parameter space is safe, and " STORM_PRINT_AND_LOG(storm::utility::convertNumber<double>(satArea / parameterSpace.area()) * 100 << "% of the parameter space is safe, and "
<< storm::utility::convertNumber<double>(unsatArea / parameterSpace.area()) * 100 << "% of the parameter space is unsafe." << std::endl); << storm::utility::convertNumber<double>(unsatArea / parameterSpace.area()) * 100 << "% of the parameter space is unsafe." << std::endl);
parameterLiftingStopWatch.stop(); parameterLiftingStopWatch.stop();

Loading…
Cancel
Save