Storm 1.13.0.1
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
SparseModelFromUmb.cpp
Go to the documentation of this file.
2
3#include <ranges>
4#include <utility>
5
8
17
21
22namespace storm::umb {
23
24namespace detail {
25
26auto csrRange(auto&& csr, uint64_t i) {
27 if (csr) {
28 STORM_LOG_ASSERT(i + 1 < csr->size(), "CSR index out of bounds: " << (i + 1) << " >= " << csr->size());
29 return std::ranges::iota_view(csr.value()[i], csr.value()[i + 1]);
30 } else {
31 // assume 1:1 mapping
32 return std::ranges::iota_view(i, i + 1);
33 }
34}
35
36template<typename ValueType>
37storm::storage::SparseMatrix<ValueType> createBranchMatrix(storm::umb::UmbModel const& umbModel, std::ranges::input_range auto&& branchValues) {
38 auto const& tsIndex = umbModel.index.transitionSystem;
39 bool const hasRowGroups = tsIndex.numPlayers >= 1;
40 storm::storage::SparseMatrixBuilder<ValueType> builder(tsIndex.numChoices, tsIndex.numStates, tsIndex.numBranches, true, hasRowGroups,
41 hasRowGroups ? tsIndex.numStates : 0u);
42 for (uint64_t stateIndex{0}; stateIndex < tsIndex.numStates; ++stateIndex) {
43 auto choices = csrRange(umbModel.stateToChoices, stateIndex);
44 if (hasRowGroups) {
45 builder.newRowGroup(*choices.begin());
46 }
47 for (auto const choiceIndex : choices) {
48 STORM_LOG_ASSERT(choiceIndex < tsIndex.numChoices, "Choice index out of bounds.");
49 for (auto const branchIndex : csrRange(umbModel.choiceToBranches, choiceIndex)) {
50 auto const branchTarget = umbModel.branchToTarget.has_value() ? umbModel.branchToTarget.value()[branchIndex] : 0ul;
51 STORM_LOG_ASSERT(branchTarget < tsIndex.numStates, "Branch target index out of bounds: " << branchTarget << " >= " << tsIndex.numStates);
52 builder.addNextValue(choiceIndex, branchTarget, branchValues[branchIndex]);
53 }
54 }
55 }
56 return builder.build();
57}
58
59template<typename ValueType>
61 storm::umb::SizedType const& sourceType) {
62 return ValueEncoding::applyDecodedVector<ValueType>([&umbModel](auto&& input) { return createBranchMatrix<ValueType>(umbModel, input); }, branchValues,
63 sourceType);
64}
65
66template<typename ValueType>
68 auto const defaultView = std::ranges::iota_view(0ull, umbModel.index.transitionSystem.numBranches) |
69 std::ranges::views::transform([&defaultValue](auto) -> ValueType { return defaultValue; });
70 return createBranchMatrix<ValueType>(umbModel, defaultView);
71}
72
74 STORM_LOG_THROW(umbBitVector.size() >= size, storm::exceptions::WrongFormatException,
75 "Bit vector has unexpected size: " << umbBitVector.size() << " < " << size);
76 storm::storage::BitVector result(umbBitVector);
77 result.resize(size);
78 return result;
79}
80
82 STORM_LOG_THROW(umbBitVector.has_value(), storm::exceptions::WrongFormatException, "BitVector is not given but expected.");
83 return createBitVector(umbBitVector.value(), size);
84}
85
87 auto const& numStates = umbModel.index.transitionSystem.numStates;
88 storm::models::sparse::StateLabeling stateLabelling(numStates);
89 if (umbModel.stateIsInitial) {
90 stateLabelling.addLabel("init", createBitVector(umbModel.stateIsInitial, numStates));
91 } else {
92 STORM_LOG_WARN("No initial states given in UMB model.");
93 stateLabelling.addLabel("init", storm::storage::BitVector(numStates, false)); // default to all states not being initial
94 }
95 if (umbModel.index.aps().has_value()) {
96 auto aps = umbModel.index.aps();
97 for (auto const& [apName, apIndex] : aps.value()) {
98 STORM_LOG_THROW(umbModel.aps().has_value() && umbModel.aps()->contains(apName), storm::exceptions::WrongFormatException,
99 "Atomic proposition '" << apName << "' mentioned in index but no files were found.");
100 STORM_LOG_THROW(isBooleanType(apIndex.type.type), storm::exceptions::WrongFormatException,
101 "Atomic proposition '" << apName << "' must be of boolean type.");
102 STORM_LOG_THROW(apIndex.appliesTo.size() == 1 && apIndex.appliesToStates(), storm::exceptions::WrongFormatException,
103 "Atomic proposition '" << apName << "' must apply only to states.");
104 auto const& ap = umbModel.aps()->at(apName);
105 auto labelName = apIndex.alias.value_or(apName); // prefer alias as label name if it exists
106 STORM_LOG_THROW(ap.states.has_value(), storm::exceptions::WrongFormatException, "Atomic proposition '" << apName << "' has no states values");
107 STORM_LOG_THROW(!stateLabelling.containsLabel(labelName), storm::exceptions::WrongFormatException,
108 "Label '" << labelName << "' already exists in state labeling.");
109 stateLabelling.addLabel(labelName, createBitVector(ap.states->values.template get<bool>(), numStates));
110 }
111 }
112 return stateLabelling;
113}
114
116 auto const& numChoices = umbModel.index.transitionSystem.numChoices;
117 auto const& numActions = umbModel.index.transitionSystem.numChoiceActions;
118
119 storm::models::sparse::ChoiceLabeling choiceLabeling(numChoices);
120
121 auto const actionStrings = storm::umb::stringVectorView(umbModel.choiceActions->strings, umbModel.choiceActions->stringMapping);
122 bool const hasActionStrings = !actionStrings.empty();
123 STORM_LOG_THROW(!hasActionStrings || actionStrings.size() == numActions, storm::exceptions::WrongFormatException,
124 "Number of action strings does not match number of actions.");
125
126 // choices where the action has the empty label will not be labeled at all. If there are no string labels, this case is not relevant.
127 uint64_t const emptyActionIndex = hasActionStrings ? std::ranges::find(actionStrings, "") - actionStrings.begin() : numActions;
128
129 // for each choice, find the corresponding action index and set the bit accordingly
130 auto const& choiceToChoiceAction = umbModel.choiceActions->values.value();
131 std::vector<storm::storage::BitVector> actionToLabels(numActions, storm::storage::BitVector(numChoices, false));
132 for (uint64_t choiceIndex = 0; choiceIndex < numChoices; ++choiceIndex) {
133 auto const actionIndex = choiceToChoiceAction[choiceIndex];
134 STORM_LOG_ASSERT(actionIndex < numActions, "Choice to action mapping out of bounds.");
135 if (hasActionStrings && actionIndex == emptyActionIndex) {
136 continue; // skip choices with empty action. They will not be labeled.
137 }
138 actionToLabels[actionIndex].set(choiceIndex);
139 }
140
141 // add the action labels to the labeling
142 if (hasActionStrings) {
143 for (uint64_t actionIndex = 0; actionIndex < numActions; ++actionIndex) {
144 if (actionIndex == emptyActionIndex) {
145 continue;
146 }
147 choiceLabeling.addLabel(std::string(actionStrings[actionIndex]), std::move(actionToLabels[actionIndex]));
148 }
149 } else {
150 // use generic action names
151 for (uint64_t actionIndex = 0; actionIndex < numActions; ++actionIndex) {
152 choiceLabeling.addLabel("a" + std::to_string(actionIndex), std::move(actionToLabels[actionIndex]));
153 }
154 }
155 return choiceLabeling;
156}
157
158template<typename ValueType>
161 std::unordered_map<std::string, RewardModel> rewardModels;
162 if (umbModel.index.rewards().has_value()) {
163 auto rewards = umbModel.index.rewards();
164 for (auto const& [rewName, rewIndex] : rewards.value()) {
165 STORM_LOG_THROW(umbModel.rewards().has_value() && umbModel.rewards()->contains(rewName), storm::exceptions::WrongFormatException,
166 "Reward " << rewName << "' mentioned in index but no files were found.");
167 auto const& rew = umbModel.rewards()->at(rewName);
168 auto usedRewName = rewIndex.alias.value_or(rewName); // prefer alias as reward name if it exists
169 STORM_LOG_THROW(!rewardModels.contains(usedRewName), storm::exceptions::WrongFormatException,
170 "Reward '" << usedRewName << "' already exists in reward models.");
171 STORM_LOG_THROW(isNumericType(rewIndex.type.type), storm::exceptions::WrongFormatException,
172 "Reward type for reward '" << rewName << "' must be numeric.");
173 std::optional<std::vector<ValueType>> stateRewards, stateActionRewards;
174 std::optional<storm::storage::SparseMatrix<ValueType>> transitionRewards;
175 if (rewIndex.appliesToStates() && rew.states.has_value()) {
176 stateRewards = ValueEncoding::createDecodedVector<ValueType>(rew.states->values, rewIndex.type);
177 }
178 if (rewIndex.appliesToChoices() && rew.choices.has_value()) {
179 stateActionRewards = ValueEncoding::createDecodedVector<ValueType>(rew.choices->values, rewIndex.type);
180 }
181 if (rewIndex.appliesToBranches() && rew.branches.has_value()) {
182 transitionRewards = createBranchMatrix<ValueType>(umbModel, rew.branches->values, rewIndex.type);
183 }
184 STORM_LOG_THROW(!rewIndex.appliesToObservations(), storm::exceptions::NotSupportedException,
185 "Observation rewards are not supported for reward '" << rewName << "'.");
186 STORM_LOG_THROW(!rewIndex.appliesToPlayers(), storm::exceptions::NotSupportedException,
187 "Player rewards are not supported for reward '" << rewName << "'.");
188 rewardModels.emplace(std::move(usedRewName), RewardModel(std::move(stateRewards), std::move(stateActionRewards), std::move(transitionRewards)));
189 }
190 }
191 return rewardModels;
192}
193
194template<typename ValueType>
196 if (umbModel.branchToProbability.hasValue()) {
197 auto const probType = umbModel.index.transitionSystem.branchProbabilityType.value();
198 auto result = createBranchMatrix<ValueType>(umbModel, umbModel.branchToProbability, probType);
200 if (umbModel.branchToProbability.isType<double>() || umbModel.branchToProbability.isType<storm::Interval>()) {
201 // If the branch probabilities are imprecise, we might need to adapt the matrix rows to ensure they sum up to 1.
202 uint64_t numNormalized{0};
204 auto updateNormStats = [&numNormalized, &maxDiff](auto const& rowSum) {
205 maxDiff = std::max(
207 ++numNormalized;
208 };
209
210 for (uint64_t rowIndex = 0; rowIndex < result.getRowCount(); ++rowIndex) {
211 auto const rowSum = result.getRowSum(rowIndex);
212 if constexpr (storm::IsIntervalType<ValueType>) {
213 if (rowSum.lower() > storm::utility::one<ValueType>()) {
214 updateNormStats(rowSum.lower());
215 for (auto& entry : result.getRow(rowIndex)) {
216 entry.setValue({entry.getValue().lower() / rowSum.lower(), entry.getValue().upper()});
217 }
218 } else if (rowSum.upper() < storm::utility::one<ValueType>()) {
219 updateNormStats(rowSum.upper());
220 for (auto& entry : result.getRow(rowIndex)) {
221 entry.setValue({entry.getValue().lower(), entry.getValue().upper() / rowSum.upper()});
222 }
223 }
224 } else {
225 if (!storm::utility::isOne(rowSum)) {
226 updateNormStats(rowSum);
227 for (auto& entry : result.getRow(rowIndex)) {
228 entry.setValue(entry.getValue() / rowSum);
229 }
230 }
231 }
232 }
233 STORM_LOG_WARN_COND(numNormalized == 0,
234 "Branch probabilities are given in an imprecise type but an exact model was requested. Probabilities for "
235 << numNormalized << " choices were normalized to ensure they sum up to 1. Maximum diff to 1 was " << maxDiff << ".");
236 }
237 }
238 return result;
239 } else {
241 }
242}
243
244template<typename ValueType>
245std::shared_ptr<storm::models::sparse::Model<ValueType>> constructSparseModel(storm::umb::UmbModel const& umbModel, ImportOptions const& options) {
246 umbModel.validateOrThrow();
247
248 // transitions, labelings, rewards
249 auto stateLabelling = constructStateLabeling(umbModel);
250 STORM_LOG_THROW(umbModel.index.transitionSystem.branchProbabilityType.has_value(), storm::exceptions::WrongFormatException,
251 "Branch probability type must be given in the UMB model index.");
252 auto transitionMatrix = constructTransitionMatrix<ValueType>(umbModel);
253 storm::storage::sparse::ModelComponents<ValueType> components(std::move(transitionMatrix), std::move(stateLabelling),
255 if (options.buildChoiceLabeling && umbModel.index.transitionSystem.numChoiceActions > 0) {
256 STORM_LOG_THROW(umbModel.choiceActions.has_value() && umbModel.choiceActions->values.has_value(), storm::exceptions::WrongFormatException,
257 "Choice actions mentioned in the index but no files given.");
258 components.choiceLabeling = constructChoiceLabeling(umbModel);
259 }
260 if (options.buildStateValuations && umbModel.index.valuations.has_value() && umbModel.index.valuations->states.has_value()) {
261 STORM_LOG_THROW(umbModel.valuations.states.has_value() && umbModel.valuations.states->valuations.has_value(), storm::exceptions::WrongFormatException,
262 "State valuations mentioned in the index but no files given.");
263 STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "State valuations for UMB models are not yet supported.");
264 } else {
265 STORM_LOG_WARN_COND(!options.buildStateValuations, "State valuations requested but the UMB model does not have any.");
266 }
267
268 // model type-specific components
269 using enum storm::models::ModelType;
270 auto const modelType = deriveModelType(umbModel.index);
271 if (modelType == Ctmc || modelType == MarkovAutomaton) {
272 STORM_LOG_THROW(umbModel.stateToExitRate.hasValue(), storm::exceptions::WrongFormatException,
273 "Exit rates are required for CTMC and Markov automaton models but not present in the UMB model.");
275 if (modelType == MarkovAutomaton) {
276 if (umbModel.stateIsMarkovian) {
278 } else {
279 // Default to no Markovian state
280 components.markovianStates.emplace(umbModel.index.transitionSystem.numStates, false);
281 }
282 }
283 } else if (modelType == Pomdp) {
285 storm::exceptions::NotSupportedException, "Only state observations are currently supported for POMDP models.");
286 STORM_LOG_THROW(!umbModel.index.transitionSystem.observationProbabilityType.has_value(), storm::exceptions::NotSupportedException,
287 "Only deterministic state observations are currently supported for POMDP models.");
288 STORM_LOG_THROW(umbModel.stateObservations.has_value(), storm::exceptions::WrongFormatException,
289 "State observations are required for POMDP models but not present in the UMB model.");
290 components.observabilityClasses.emplace(umbModel.stateObservations->values->begin(), umbModel.stateObservations->values->end());
291 } else if (modelType == Smg) {
292 if (umbModel.stateToPlayer.has_value()) {
293 auto const& stateToPlayer = umbModel.stateToPlayer.value();
294 components.statePlayerIndications.emplace(stateToPlayer.begin(), stateToPlayer.end());
295 } else {
296 // Default to all states belonging to player 0
297 components.statePlayerIndications.emplace(umbModel.index.transitionSystem.numStates, 0);
298 }
299 if (umbModel.index.transitionSystem.playerNames.has_value()) {
300 auto const& names = umbModel.index.transitionSystem.playerNames.value();
301 STORM_LOG_THROW(names.size() == umbModel.index.transitionSystem.numPlayers, storm::exceptions::WrongFormatException,
302 "Number of player names does not match number of players in the UMB model index.");
303 components.playerNameToIndexMap.emplace();
304 for (uint64_t i = 0; i < names.size(); ++i) {
305 components.playerNameToIndexMap->emplace(names[i], i);
306 }
307 }
308 } else {
309 STORM_LOG_THROW(modelType == Dtmc || modelType == Mdp, storm::exceptions::NotSupportedException, "Unexpected model type for UMB import: " << modelType);
310 }
311 return storm::utility::builder::buildModelFromComponents(deriveModelType(umbModel.index), std::move(components));
312}
313
314} // namespace detail
315
317 using enum storm::models::ModelType;
318
319 auto const& ts = index.transitionSystem;
320
321 STORM_LOG_THROW(ts.branchProbabilityType.has_value(), storm::exceptions::NotSupportedException, "Models without branch values are not supported.");
322 switch (ts.time) {
324 case Discrete:
325 switch (ts.numPlayers) {
326 case 0:
327 return Dtmc;
328 case 1:
329 return ts.numObservations == 0 ? Mdp : Pomdp;
330 default:
331 STORM_LOG_THROW(ts.numObservations == 0, storm::exceptions::NotSupportedException,
332 "Multiplayer partially observable models are not supported.");
333 return Smg;
334 }
335 case Stochastic:
336 STORM_LOG_THROW(ts.numPlayers == 0, storm::exceptions::NotSupportedException, "Stochastic time models with multiple players are not supported.");
337 return Ctmc;
338 case UrgentStochastic:
339 STORM_LOG_THROW(ts.numPlayers == 1, storm::exceptions::NotSupportedException,
340 "Urgent stochastic time models with multiple or no players are not supported.");
341 return MarkovAutomaton;
342 }
343 STORM_LOG_THROW(false, storm::exceptions::UnexpectedException, "Unexpected transition system time type" << ts.time << ".");
344}
345
346template<typename ValueType>
347bool deriveValueType(storm::umb::ModelIndex const& index, ImportOptions const& options) {
348 STORM_LOG_THROW(index.transitionSystem.branchProbabilityType.has_value(), storm::exceptions::NotSupportedException,
349 "Models without branch values are not supported.");
350 bool const haveDouble = index.transitionSystem.branchProbabilityType->type == storm::umb::Type::Double;
351 bool const haveRational = index.transitionSystem.branchProbabilityType->type == storm::umb::Type::Rational;
352 bool const haveDoubleInterval = index.transitionSystem.branchProbabilityType->type == storm::umb::Type::DoubleInterval;
353 bool const haveRationalInterval = index.transitionSystem.branchProbabilityType->type == storm::umb::Type::RationalInterval;
354 bool const haveInterval = haveDoubleInterval || haveRationalInterval;
355 bool const useDefault = options.valueType == ImportOptions::ValueType::Default;
356 bool const useDouble = options.valueType == ImportOptions::ValueType::Double;
357 bool const useRational = options.valueType == ImportOptions::ValueType::Rational;
358
359 STORM_LOG_ASSERT(useDefault || useDouble || useRational, "Unexpected value type option: " << static_cast<int>(options.valueType) << ".");
360
361 if (!haveInterval) {
362 if constexpr (std::is_same_v<ValueType, double>) {
363 return useDouble || (useDefault && haveDouble);
364 } else if constexpr (std::is_same_v<ValueType, storm::RationalNumber>) {
365 return useRational || (useDefault && haveRational);
366 } else {
367 return false;
368 }
369 } else {
370 if constexpr (std::is_same_v<ValueType, storm::Interval>) {
371 return useDouble || (useDefault && haveDoubleInterval);
372 } else if constexpr (std::is_same_v<ValueType, storm::RationalInterval>) {
373 return useRational || (useDefault && haveRationalInterval);
374 } else {
375 return false;
376 }
377 }
378}
379
380template<typename ValueType>
381std::shared_ptr<storm::models::sparse::Model<ValueType>> sparseModelFromUmb(storm::umb::UmbModel const& umbModel, ImportOptions const& options) {
382 return detail::constructSparseModel<ValueType>(umbModel, options);
383}
384
385std::shared_ptr<storm::models::ModelBase> sparseModelFromUmb(storm::umb::UmbModel const& umbModel, ImportOptions const& options) {
386 if (deriveValueType<double>(umbModel.index, options)) {
387 return detail::constructSparseModel<double>(umbModel, options);
388 } else if (deriveValueType<storm::RationalNumber>(umbModel.index, options)) {
390 } else if (deriveValueType<storm::Interval>(umbModel.index, options)) {
391 return detail::constructSparseModel<storm::Interval>(umbModel, options);
392 } else if (deriveValueType<storm::RationalInterval>(umbModel.index, options)) {
394 } else {
395 STORM_LOG_THROW(false, storm::exceptions::NotSupportedException,
396 "Could not derive a supported value type for the UMB model with branch probabilities of type "
397 << umbModel.index.transitionSystem.branchProbabilityType->toString() << ".");
398 }
399}
400
401template std::shared_ptr<storm::models::sparse::Model<double>> sparseModelFromUmb<double>(storm::umb::UmbModel const& umbModel, ImportOptions const& options);
402template std::shared_ptr<storm::models::sparse::Model<storm::RationalNumber>> sparseModelFromUmb<storm::RationalNumber>(storm::umb::UmbModel const& umbModel,
403 ImportOptions const& options);
404template std::shared_ptr<storm::models::sparse::Model<storm::Interval>> sparseModelFromUmb<storm::Interval>(storm::umb::UmbModel const& umbModel,
405 ImportOptions const& options);
406template std::shared_ptr<storm::models::sparse::Model<storm::RationalInterval>> sparseModelFromUmb<storm::RationalInterval>(
407 storm::umb::UmbModel const& umbModel, ImportOptions const& options);
408
409} // namespace storm::umb
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.
Definition BitVector.h:16
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.
Represents a model in the UMB format.
Definition UmbModel.h:21
TO1< bool > stateIsMarkovian
Definition UmbModel.h:29
void validateOrThrow() const
Validates the UmbModel.
Definition UmbModel.cpp:100
storm::OptionalRef< Annotation > rewards(bool createIfMissing=false)
Definition UmbModel.cpp:88
TO1< AnyValueType > branchToProbability
Definition UmbModel.h:35
std::optional< ActionLabels > choiceActions
Definition UmbModel.h:43
TO1< bool > stateIsInitial
Definition UmbModel.h:28
TO1< AnyValueType > stateToExitRate
Definition UmbModel.h:30
ModelIndex index
Definition UmbModel.h:24
TO1< uint32_t > stateToPlayer
Definition UmbModel.h:27
TO1< uint64_t > branchToTarget
Definition UmbModel.h:34
Valuations valuations
Definition UmbModel.h:77
std::optional< Observations > stateObservations
Definition UmbModel.h:51
storm::OptionalRef< Annotation > aps(bool createIfMissing=false)
Definition UmbModel.cpp:80
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)
Definition logging.h:25
#define STORM_LOG_ASSERT(cond, message)
Definition macros.h:11
#define STORM_LOG_WARN_COND(cond, message)
Definition macros.h:38
#define STORM_LOG_THROW(cond, exception, message)
Definition macros.h:30
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)
std::optional< VectorType< T > > OptionalVectorType
Definition FileTypes.h:21
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)
Definition Type.cpp:38
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
Definition FileTypes.h:18
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)
Definition Type.cpp:8
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)
template std::shared_ptr< storm::models::sparse::Model< double > > sparseModelFromUmb< double >(storm::umb::UmbModel const &umbModel, ImportOptions const &options)
@ RationalInterval
Definition Type.h:11
storm::models::ModelType deriveModelType(storm::umb::ModelIndex const &index)
Derives the model type from the given UMB model index.
auto stringVectorView(SEQ< char > const &strings, CSR const &stringMapping)
std::shared_ptr< storm::models::sparse::Model< ValueType, RewardModelType > > buildModelFromComponents(storm::models::ModelType modelType, storm::storage::sparse::ModelComponents< ValueType, RewardModelType > &&components)
Definition builder.cpp:20
bool isOne(ValueType const &a)
Definition constants.cpp:34
ValueType abs(ValueType const &number)
ValueType zero()
Definition constants.cpp:24
ValueType one()
Definition constants.cpp:19
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::models::sparse::ChoiceLabeling > choiceLabeling
boost::optional< std::map< std::string, storm::storage::PlayerIndex > > playerNameToIndexMap
std::optional< std::vector< uint32_t > > observabilityClasses
boost::optional< std::vector< ValueType > > exitRates
bool buildChoiceLabeling
Controls building of choice labelings.
bool buildStateValuations
Controls building of state valuations.
std::optional< SizedType > exitRateType
Definition ModelIndex.h:58
std::optional< SizedType > branchProbabilityType
Definition ModelIndex.h:58
std::optional< storm::SerializedEnum< ObservationsApplyToDeclaration > > observationsApplyTo
Definition ModelIndex.h:56
std::optional< std::vector< std::string > > playerNames
Definition ModelIndex.h:60
std::optional< SizedType > observationProbabilityType
Definition ModelIndex.h:58
storm::OptionalRef< AnnotationMap > rewards(bool createIfMissing=false)
struct storm::umb::ModelIndex::TransitionSystem transitionSystem
std::optional< Valuations > valuations
Definition ModelIndex.h:116
storm::OptionalRef< AnnotationMap > aps(bool createIfMissing=false)
std::optional< Values > states
Definition UmbModel.h:55