Storm 1.11.1.1
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
RegionSplittingStrategy.cpp
Go to the documentation of this file.
2
5
6namespace storm {
7namespace modelchecker {
8std::ostream& operator<<(std::ostream& os, RegionSplittingStrategy::Heuristic const& e) {
9 switch (e) {
11 os << "Estimate-Based";
12 break;
14 os << "Round Robin";
15 break;
17 os << "Default";
18 break;
19 default:
20 STORM_LOG_THROW(false, storm::exceptions::NotImplementedException,
21 "Could not get a string from the region check engine. 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
LabParser.cpp.