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.
15 lines
491 B
15 lines
491 B
#include "src/models/ModelType.h"
|
|
|
|
namespace storm {
|
|
namespace models {
|
|
std::ostream& operator<<(std::ostream& os, ModelType const& type) {
|
|
switch (type) {
|
|
case ModelType::Dtmc: os << "DTMC"; break;
|
|
case ModelType::Ctmc: os << "CTMC"; break;
|
|
case ModelType::Mdp: os << "MDP"; break;
|
|
case ModelType::MarkovAutomaton: os << "Markov Automaton"; break;
|
|
}
|
|
return os;
|
|
}
|
|
}
|
|
}
|