8 ValueType thresholdAsValueType = evaluateThresholdAs<ValueType>();
11 return compareValue > thresholdAsValueType;
13 return compareValue >= thresholdAsValueType;
15 return compareValue < thresholdAsValueType;
17 return compareValue <= thresholdAsValueType;
19 STORM_LOG_THROW(
false, storm::exceptions::IllegalArgumentException,
"Unknown ComparisonType");