Storm
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
ExplorationOrder.cpp
Go to the documentation of this file.
2
3namespace storm {
4namespace builder {
5
6std::ostream& operator<<(std::ostream& out, ExplorationOrder const& order) {
7 switch (order) {
9 out << "depth-first";
10 break;
12 out << "breadth-first";
13 break;
14 default:
15 out << "undefined";
16 break;
17 }
18 return out;
19}
20
21} // namespace builder
22} // namespace storm
std::ostream & operator<<(std::ostream &out, ExplorationOrder const &order)
LabParser.cpp.
Definition cli.cpp:18