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.
21 lines
645 B
21 lines
645 B
#pragma once
|
|
|
|
#include "storm/abstraction/QuantitativeResult.h"
|
|
|
|
namespace storm {
|
|
namespace abstraction {
|
|
|
|
template<storm::dd::DdType Type, typename ValueType>
|
|
struct QuantitativeResultMinMax {
|
|
QuantitativeResultMinMax() = default;
|
|
|
|
QuantitativeResultMinMax(QuantitativeResult<Type, ValueType> const& min, QuantitativeResult<Type, ValueType> const& max) : min(min), max(max) {
|
|
// Intentionally left empty.
|
|
}
|
|
|
|
QuantitativeResult<Type, ValueType> min;
|
|
QuantitativeResult<Type, ValueType> max;
|
|
};
|
|
|
|
}
|
|
}
|