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.
16 lines
357 B
16 lines
357 B
#ifndef STORM_LOGIC_REWARDMEASURETYPE_H_
|
|
#define STORM_LOGIC_REWARDMEASURETYPE_H_
|
|
|
|
#include <iostream>
|
|
|
|
namespace storm {
|
|
namespace logic {
|
|
|
|
enum class RewardMeasureType { Expectation, Variance };
|
|
|
|
std::ostream& operator<<(std::ostream& out, RewardMeasureType const& type);
|
|
|
|
}
|
|
}
|
|
|
|
#endif /* STORM_LOGIC_REWARDMEASURETYPE_H_ */
|