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.
22 lines
595 B
22 lines
595 B
#include "storm/builder/ExplorationOrder.h"
|
|
|
|
namespace storm {
|
|
namespace builder {
|
|
|
|
std::ostream& operator<<(std::ostream& out, ExplorationOrder const& order) {
|
|
switch (order) {
|
|
case ExplorationOrder::Dfs:
|
|
out << "depth-first";
|
|
break;
|
|
case ExplorationOrder::Bfs:
|
|
out << "breadth-first";
|
|
break;
|
|
default:
|
|
out << "undefined";
|
|
break;
|
|
}
|
|
return out;
|
|
}
|
|
|
|
}
|
|
}
|