27 STORM_LOG_ASSERT(i + 1 < csr->size(),
"CSR index out of bounds: " << (i + 1) <<
" >= " << csr->size());
28 return std::ranges::iota_view(csr.value()[i], csr.value()[i + 1]);
31 return std::ranges::iota_view(i, i + 1);
35template<
typename ValueType>
38 bool const hasRowGroups = tsIndex.
numPlayers >= 1;
40 hasRowGroups ? tsIndex.numStates : 0u);
41 for (uint64_t stateIndex{0}; stateIndex < tsIndex.numStates; ++stateIndex) {
44 builder.newRowGroup(*choices.begin());
46 for (
auto const choiceIndex : choices) {
47 STORM_LOG_ASSERT(choiceIndex < tsIndex.numChoices,
"Choice index out of bounds.");
50 STORM_LOG_ASSERT(branchTarget < tsIndex.numStates,
"Branch target index out of bounds: " << branchTarget <<
" >= " << tsIndex.numStates);
51 builder.addNextValue(choiceIndex, branchTarget, branchValues[branchIndex]);
58template<
typename ValueType>
65template<
typename ValueType>
68 std::ranges::views::transform([&defaultValue](
auto) -> ValueType {
return defaultValue; });
73 STORM_LOG_THROW(umbBitVector.size() >= size, storm::exceptions::WrongFormatException,
74 "Bit vector has unexpected size: " << umbBitVector.size() <<
" < " << size <<
".");
81 STORM_LOG_THROW(umbBitVector.has_value(), storm::exceptions::WrongFormatException,
"BitVector is not given but expected.");
94 if (umbModel.
index.
aps().has_value()) {
96 for (
auto const& [apName, apIndex] : aps.value()) {
97 STORM_LOG_THROW(umbModel.
aps().has_value() && umbModel.
aps()->contains(apName), storm::exceptions::WrongFormatException,
98 "Atomic proposition '" << apName <<
"' mentioned in index but no files were found.");
100 "Atomic proposition '" << apName <<
"' must be of boolean type.");
101 STORM_LOG_THROW(apIndex.appliesTo.size() == 1 && apIndex.appliesToStates(), storm::exceptions::WrongFormatException,
102 "Atomic proposition '" << apName <<
"' must apply only to states.");
103 auto const& ap = umbModel.
aps()->at(apName);
104 auto labelName = apIndex.alias.value_or(apName);
105 STORM_LOG_THROW(ap.states.has_value(), storm::exceptions::WrongFormatException,
"Atomic proposition '" << apName <<
"' has no states values.");
107 "Label '" << labelName <<
"' already exists in state labeling.");
111 return stateLabelling;
121 bool const hasActionStrings = !actionStrings.empty();
122 STORM_LOG_THROW(!hasActionStrings || actionStrings.size() == numActions, storm::exceptions::WrongFormatException,
123 "Number of action strings does not match number of actions.");
126 uint64_t
const emptyActionIndex = hasActionStrings ? std::ranges::find(actionStrings,
"") - actionStrings.begin() : numActions;
129 auto const& choiceToChoiceAction = umbModel.
choiceActions->values.value();
131 for (uint64_t choiceIndex = 0; choiceIndex < numChoices; ++choiceIndex) {
132 auto const actionIndex = choiceToChoiceAction[choiceIndex];
133 STORM_LOG_ASSERT(actionIndex < numActions,
"Choice to action mapping out of bounds.");
134 if (hasActionStrings && actionIndex == emptyActionIndex) {
137 actionToLabels[actionIndex].set(choiceIndex);
141 if (hasActionStrings) {
142 for (uint64_t actionIndex = 0; actionIndex < numActions; ++actionIndex) {
143 if (actionIndex == emptyActionIndex) {
146 choiceLabeling.
addLabel(std::string(actionStrings[actionIndex]), std::move(actionToLabels[actionIndex]));
150 for (uint64_t actionIndex = 0; actionIndex < numActions; ++actionIndex) {
151 choiceLabeling.
addLabel(
"a" + std::to_string(actionIndex), std::move(actionToLabels[actionIndex]));
154 return choiceLabeling;
157template<
typename ValueType>
160 std::unordered_map<std::string, RewardModel> rewardModels;
163 for (
auto const& [rewName, rewIndex] : rewards.value()) {
165 "Reward " << rewName <<
"' mentioned in index but no files were found.");
166 auto const& rew = umbModel.
rewards()->at(rewName);
167 auto usedRewName = rewIndex.alias.value_or(rewName);
168 STORM_LOG_THROW(!rewardModels.contains(usedRewName), storm::exceptions::WrongFormatException,
169 "Reward '" << usedRewName <<
"' already exists in reward models.");
171 "Reward type for reward '" << rewName <<
"' must be numeric.");
172 std::optional<std::vector<ValueType>> stateRewards, stateActionRewards;
173 std::optional<storm::storage::SparseMatrix<ValueType>> transitionRewards;
174 if (rewIndex.appliesToStates() && rew.states.has_value()) {
177 if (rewIndex.appliesToChoices() && rew.choices.has_value()) {
180 if (rewIndex.appliesToBranches() && rew.branches.has_value()) {
183 STORM_LOG_THROW(!rewIndex.appliesToObservations(), storm::exceptions::NotSupportedException,
184 "Observation rewards are not supported for reward '" << rewName <<
"'.");
185 STORM_LOG_THROW(!rewIndex.appliesToPlayers(), storm::exceptions::NotSupportedException,
186 "Player rewards are not supported for reward '" << rewName <<
"'.");
187 rewardModels.emplace(std::move(usedRewName), RewardModel(std::move(stateRewards), std::move(stateActionRewards), std::move(transitionRewards)));
193template<
typename ValueType>
201 uint64_t numNormalized{0};
203 auto updateNormStats = [&numNormalized, &maxDiff](
auto const& rowSum) {
209 for (uint64_t rowIndex = 0; rowIndex < result.getRowCount(); ++rowIndex) {
210 auto const rowSum = result.getRowSum(rowIndex);
213 updateNormStats(rowSum.lower());
214 for (
auto& entry : result.getRow(rowIndex)) {
215 entry.setValue({entry.getValue().lower() / rowSum.lower(), entry.getValue().upper()});
218 updateNormStats(rowSum.upper());
219 for (
auto& entry : result.getRow(rowIndex)) {
220 entry.setValue({entry.getValue().lower(), entry.getValue().upper() / rowSum.upper()});
225 updateNormStats(rowSum);
226 for (
auto& entry : result.getRow(rowIndex)) {
227 entry.setValue(entry.getValue() / rowSum);
233 "Branch probabilities are given in an imprecise type but an exact model was requested. Probabilities for "
234 << numNormalized <<
" choices were normalized to ensure they sum up to 1. Maximum diff to 1 was " << maxDiff <<
".");
243template<
typename ValueType>
250 "Branch probability type must be given in the UMB model index.");
257 "Choice actions mentioned in the index but no files given.");
263 "State valuations mentioned in the index but no files given.");
266 STORM_LOG_ASSERT(svIndex.numStrings.has_value() == svData.stringMapping.has_value() && svIndex.numStrings.has_value() == svData.strings.has_value(),
267 "String mapping and strings must be given iff there are #strings mentioned in index.");
269 svData.stringMapping.value_or(std::vector<uint64_t>()), svData.strings.value_or(std::vector<char>()),
270 svData.valuationToClass);
279 if (modelType == Ctmc || modelType == MarkovAutomaton) {
281 "Exit rates are required for CTMC and Markov automaton models but not present in the UMB model.");
283 if (modelType == MarkovAutomaton) {
291 }
else if (modelType == Pomdp) {
293 storm::exceptions::NotSupportedException,
"Only state observations are currently supported for POMDP models.");
295 "Only deterministic state observations are currently supported for POMDP models.");
297 "State observations are required for POMDP models but not present in the UMB model.");
302 storm::exceptions::WrongFormatException,
"Observation valuations mentioned in the index but no files given.");
305 STORM_LOG_ASSERT(ovIndex.numStrings.has_value() == ovData.stringMapping.has_value() && ovIndex.numStrings.has_value() == ovData.strings.has_value(),
306 "String mapping and strings must be given iff there are #strings mentioned in index.");
308 ovData.stringMapping.value_or(std::vector<uint64_t>()), ovData.strings.value_or(std::vector<char>()),
309 ovData.valuationToClass);
314 }
else if (modelType == Smg) {
325 "Number of player names does not match number of players in the UMB model index.");
327 for (uint64_t i = 0; i < names.size(); ++i) {
333 "Unexpected model type for UMB import: " << modelType <<
".");
345 STORM_LOG_THROW(ts.branchProbabilityType.has_value(), storm::exceptions::NotSupportedException,
"Models without branch values are not supported.");
349 switch (ts.numPlayers) {
353 return ts.numObservations == 0 ?
Mdp : Pomdp;
355 STORM_LOG_THROW(ts.numObservations == 0, storm::exceptions::NotSupportedException,
356 "Multiplayer partially observable models are not supported.");
360 STORM_LOG_THROW(ts.numPlayers == 0, storm::exceptions::NotSupportedException,
"Stochastic time models with multiple players are not supported.");
362 case UrgentStochastic:
363 STORM_LOG_THROW(ts.numPlayers == 1, storm::exceptions::NotSupportedException,
364 "Urgent stochastic time models with multiple or no players are not supported.");
365 return MarkovAutomaton;
367 STORM_LOG_THROW(
false, storm::exceptions::UnexpectedException,
"Unexpected transition system time type" << ts.time <<
".");
370template<
typename ValueType>
373 "Models without branch values are not supported.");
378 bool const haveInterval = haveDoubleInterval || haveRationalInterval;
383 STORM_LOG_ASSERT(useDefault || useDouble || useRational,
"Unexpected value type option: " <<
static_cast<int>(options.valueType) <<
".");
386 if constexpr (std::is_same_v<ValueType, double>) {
387 return useDouble || (useDefault && haveDouble);
388 }
else if constexpr (std::is_same_v<ValueType, storm::RationalNumber>) {
389 return useRational || (useDefault && haveRational);
394 if constexpr (std::is_same_v<ValueType, storm::Interval>) {
395 return useDouble || (useDefault && haveDoubleInterval);
396 }
else if constexpr (std::is_same_v<ValueType, storm::RationalInterval>) {
397 return useRational || (useDefault && haveRationalInterval);
404template<
typename ValueType>
420 "Could not derive a supported value type for the UMB model with branch probabilities of type "
storm::models::sparse::Dtmc< double > Dtmc
storm::models::sparse::Mdp< double > Mdp
This class manages the labeling of the choice space with a number of (atomic) labels.
void addLabel(std::string const &label)
Adds a new label to the labelings.
bool containsLabel(std::string const &label) const
Checks whether a label is registered within this labeling.
This class manages the labeling of the state space with a number of (atomic) labels.
A bit vector that is internally represented as a vector of 64-bit values.
void resize(uint64_t newLength, bool init=false)
Resizes the bit vector to hold the given new number of bits.
A class that can be used to build a sparse matrix by adding value by value.
A class that holds a possibly non-square matrix in the compressed row storage format.
Stores valuations of variables for a set of entities (e.g.
Represents a model in the UMB format.
TO1< bool > stateIsMarkovian
void validateOrThrow() const
Validates the UmbModel.
storm::OptionalRef< Annotation > rewards(bool createIfMissing=false)
TO1< AnyValueType > branchToProbability
std::optional< ActionLabels > choiceActions
TO1< bool > stateIsInitial
TO1< AnyValueType > stateToExitRate
TO1< uint32_t > stateToPlayer
TO1< uint64_t > branchToTarget
std::optional< Observations > stateObservations
storm::OptionalRef< Annotation > aps(bool createIfMissing=false)
static auto applyDecodedVector(auto &&func, storm::umb::GenericVector const &input, storm::umb::SizedType const &sourceType)
returns func(<decoded_input>) where <decoded_input> is a range that (if necessary) decodes and conver...
static std::vector< ValueType > createDecodedVector(storm::umb::GenericVector const &input, storm::umb::SizedType const &sourceType)
#define STORM_LOG_WARN(message)
#define STORM_LOG_ASSERT(cond, message)
#define STORM_LOG_WARN_COND(cond, message)
#define STORM_LOG_THROW(cond, exception, message)
std::shared_ptr< storm::models::sparse::Model< ValueType > > constructSparseModel(storm::umb::UmbModel const &umbModel, ImportOptions const &options)
auto csrRange(auto &&csr, uint64_t i)
storm::models::sparse::StateLabeling constructStateLabeling(storm::umb::UmbModel const &umbModel)
auto constructRewardModels(storm::umb::UmbModel const &umbModel)
storm::storage::SparseMatrix< ValueType > createBranchMatrix(storm::umb::UmbModel const &umbModel, std::ranges::input_range auto &&branchValues)
storm::storage::SparseMatrix< ValueType > constructTransitionMatrix(storm::umb::UmbModel const &umbModel)
storm::storage::BitVector createBitVector(storm::umb::VectorType< bool > const &umbBitVector, uint64_t size)
storm::models::sparse::ChoiceLabeling constructChoiceLabeling(storm::umb::UmbModel const &umbModel)
Import and export of umb files.
std::optional< VectorType< T > > OptionalVectorType
template std::shared_ptr< storm::models::sparse::Model< storm::RationalNumber > > sparseModelFromUmb< storm::RationalNumber >(storm::umb::UmbModel const &umbModel, ImportOptions const &options)
bool isNumericType(Type const type)
template std::shared_ptr< storm::models::sparse::Model< storm::Interval > > sparseModelFromUmb< storm::Interval >(storm::umb::UmbModel const &umbModel, ImportOptions const &options)
std::conditional_t< std::is_same_v< T, bool >, storm::storage::BitVector, std::vector< T > > VectorType
bool deriveValueType(storm::umb::ModelIndex const &index, ImportOptions const &options)
Returns true iff the given umb model with the given options should have ValueType as its ValueType.
bool isBooleanType(Type const type)
std::shared_ptr< storm::models::sparse::Model< ValueType > > sparseModelFromUmb(storm::umb::UmbModel const &umbModel, ImportOptions const &options)
Constructs a sparse model from the given UMB model.
template std::shared_ptr< storm::models::sparse::Model< storm::RationalInterval > > sparseModelFromUmb< storm::RationalInterval >(storm::umb::UmbModel const &umbModel, ImportOptions const &options)
auto stringVectorView(SEQ< char >::value_type const &strings, CSR::value_type const &stringMapping)
template std::shared_ptr< storm::models::sparse::Model< double > > sparseModelFromUmb< double >(storm::umb::UmbModel const &umbModel, ImportOptions const &options)
storm::models::ModelType deriveModelType(storm::umb::ModelIndex const &index)
Derives the model type from the given UMB model index.
std::shared_ptr< storm::models::sparse::Model< ValueType, RewardModelType > > buildModelFromComponents(storm::models::ModelType modelType, storm::storage::sparse::ModelComponents< ValueType, RewardModelType > &&components)
bool isOne(ValueType const &a)
ValueType abs(ValueType const &number)
carl::Interval< double > Interval
Interval type.
constexpr bool IsIntervalType
Helper to check if a type is an interval.
typename detail::IntervalMetaProgrammingHelper< ValueType >::BaseType IntervalBaseType
Helper to access the type in which interval boundaries are stored.
static const bool IsExact
boost::optional< storm::storage::BitVector > markovianStates
boost::optional< std::vector< storm::storage::PlayerIndex > > statePlayerIndications
std::optional< storm::storage::sparse::Valuations > observationValuations
std::optional< storm::models::sparse::ChoiceLabeling > choiceLabeling
boost::optional< std::map< std::string, storm::storage::PlayerIndex > > playerNameToIndexMap
std::optional< storm::storage::sparse::Valuations > stateValuations
std::optional< std::vector< uint32_t > > observabilityClasses
boost::optional< std::vector< ValueType > > exitRates
bool buildChoiceLabeling
Controls building of choice labelings.
bool buildObservationValuations
Controls building of observation valuations.
bool buildStateValuations
Controls building of state valuations.
uint64_t numChoiceActions
std::optional< SizedType > exitRateType
std::optional< SizedType > branchProbabilityType
std::optional< storm::SerializedEnum< ObservationsApplyToDeclaration > > observationsApplyTo
std::optional< std::vector< std::string > > playerNames
std::optional< SizedType > observationProbabilityType
storm::OptionalRef< AnnotationMap > rewards(bool createIfMissing=false)
struct storm::umb::ModelIndex::TransitionSystem transitionSystem
std::optional< Valuations > valuations
storm::OptionalRef< AnnotationMap > aps(bool createIfMissing=false)
std::optional< Values > observations
std::optional< Values > states