You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

36 lines
1.4 KiB

#include "storm/modelchecker/parametric/RegionCheckResult.h"
#include "storm/utility/macros.h"
#include "storm/exceptions/NotImplementedException.h"
namespace storm {
namespace modelchecker {
namespace parametric {
std::ostream& operator<<(std::ostream& os, RegionCheckResult const& regionCheckResult) {
switch (regionCheckResult) {
case RegionCheckResult::Unknown:
os << "Unknown";
break;
case RegionCheckResult::ExistsSat:
os << "ExistsSat";
break;
case RegionCheckResult::ExistsViolated:
os << "ExistsViolated";
break;
case RegionCheckResult::ExistsBoth:
os << "ExistsBoth";
break;
case RegionCheckResult::AllSat:
os << "AllSat";
break;
case RegionCheckResult::AllViolated:
os << "AllViolated";
break;
default:
STORM_LOG_THROW(false, storm::exceptions::NotImplementedException, "Could not get a string from the region check result. The case has not been implemented");
}
return os;
}
}
}
}