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
530 B
15 lines
530 B
#include "src/logic/ComparisonType.h"
|
|
|
|
namespace storm {
|
|
namespace logic {
|
|
std::ostream& operator<<(std::ostream& out, ComparisonType const& comparisonType) {
|
|
switch (comparisonType) {
|
|
case ComparisonType::Less: out << "<"; break;
|
|
case ComparisonType::LessEqual: out << "<="; break;
|
|
case ComparisonType::Greater: out << ">"; break;
|
|
case ComparisonType::GreaterEqual: out << ">="; break;
|
|
}
|
|
return out;
|
|
}
|
|
}
|
|
}
|