Storm
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
ModelRepresentation.cpp
Go to the documentation of this file.
2
5
6namespace storm {
7namespace models {
8
9std::ostream& operator<<(std::ostream& os, ModelRepresentation const& representation) {
10 switch (representation) {
12 os << "sparse";
13 break;
15 os << "DD (Cudd)";
16 break;
18 os << "DD (Sylvan)";
19 break;
20 default:
21 STORM_LOG_THROW(false, storm::exceptions::InvalidTypeException, "Unknown model representation.");
22 }
23 return os;
24}
25} // namespace models
26} // namespace storm
#define STORM_LOG_THROW(cond, exception, message)
Definition macros.h:30
std::ostream & operator<<(std::ostream &os, ModelRepresentation const &representation)
LabParser.cpp.
Definition cli.cpp:18