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.
 
 
 
 

17 lines
440 B

#ifndef STORM_BUILDER_EXPLORATIONORDER_H_
#define STORM_BUILDER_EXPLORATIONORDER_H_
#include <ostream>
namespace storm {
namespace builder {
// An enum that contains all currently supported exploration orders.
enum class ExplorationOrder { Dfs, Bfs };
std::ostream& operator<<(std::ostream& out, ExplorationOrder const& order);
}
}
#endif /* STORM_BUILDER_EXPLORATIONORDER_H_ */