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.
 
 
 
 

19 lines
493 B

#include "src/logic/RewardMeasureType.h"
namespace storm {
namespace logic {
std::ostream& operator<<(std::ostream& out, RewardMeasureType const& type) {
switch (type) {
case RewardMeasureType::Expectation:
out << "exp";
break;
case RewardMeasureType::Variance:
out << "var";
break;
}
return out;
}
}
}