Storm 1.14.0.1
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
ExplorationOrder.h
Go to the documentation of this file.
1#pragma once
2
3#include <ostream>
4
5namespace storm {
6namespace builder {
7
8// An enum that contains all currently supported exploration orders.
9enum class ExplorationOrder { Dfs, Bfs };
10
11std::ostream& operator<<(std::ostream& out, ExplorationOrder const& order);
12
13} // namespace builder
14} // namespace storm
std::ostream & operator<<(std::ostream &out, ExplorationOrder const &order)