Storm
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
RegionResultHypothesis.cpp
Go to the documentation of this file.
2
5
6namespace storm {
7namespace modelchecker {
8std::ostream& operator<<(std::ostream& os, RegionResultHypothesis const& regionResultHypothesis) {
9 switch (regionResultHypothesis) {
11 os << "Unknown";
12 break;
14 os << "AllSat?";
15 break;
17 os << "AllViolated?";
18 break;
19 default:
20 STORM_LOG_THROW(false, storm::exceptions::NotImplementedException,
21 "Could not get a string from the region result hypothesis. The case has not been implemented");
22 }
23 return os;
24}
25} // namespace modelchecker
26} // namespace storm
#define STORM_LOG_THROW(cond, exception, message)
Definition macros.h:30
std::ostream & operator<<(std::ostream &os, RegionCheckEngine const &e)
RegionResultHypothesis
hypothesis for the result for a single Parameter Region
LabParser.cpp.
Definition cli.cpp:18