Storm
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
RegionCheckEngine.cpp
Go to the documentation of this file.
2
5
6namespace storm {
7namespace modelchecker {
8std::ostream& operator<<(std::ostream& os, RegionCheckEngine const& e) {
9 switch (e) {
11 os << "Parameter Lifting";
12 break;
14 os << "Exact Parameter Lifting";
15 break;
17 os << "Validating Parameter Lifting";
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
std::ostream & operator<<(std::ostream &os, RegionCheckEngine const &e)
RegionCheckEngine
The considered engine for region checking.
@ ParameterLifting
Parameter lifting approach.
@ ValidatingParameterLifting
Parameter lifting approach with a) inexact (and fast) computation first and b) exact validation of ob...
@ ExactParameterLifting
Parameter lifting approach with exact arithmethics.
LabParser.cpp.
Definition cli.cpp:18