Storm 1.11.1.1
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
DeterministicModel.h
Go to the documentation of this file.
1#pragma once
2
4
5namespace storm {
6namespace models {
7namespace symbolic {
8
12template<storm::dd::DdType Type, typename ValueType = double>
13class DeterministicModel : public Model<Type, ValueType> {
14 public:
16
21
39 DeterministicModel(storm::models::ModelType const& modelType, std::shared_ptr<storm::dd::DdManager<Type>> manager, storm::dd::Bdd<Type> reachableStates,
41 std::set<storm::expressions::Variable> const& rowVariables,
42 std::shared_ptr<storm::adapters::AddExpressionAdapter<Type, ValueType>> rowExpressionAdapter,
43 std::set<storm::expressions::Variable> const& columnVariables,
44 std::vector<std::pair<storm::expressions::Variable, storm::expressions::Variable>> const& rowColumnMetaVariablePairs,
45 std::map<std::string, storm::expressions::Expression> labelToExpressionMap = std::map<std::string, storm::expressions::Expression>(),
46 std::unordered_map<std::string, RewardModelType> const& rewardModels = std::unordered_map<std::string, RewardModelType>());
47
63 DeterministicModel(storm::models::ModelType const& modelType, std::shared_ptr<storm::dd::DdManager<Type>> manager, storm::dd::Bdd<Type> reachableStates,
65 std::set<storm::expressions::Variable> const& rowVariables, std::set<storm::expressions::Variable> const& columnVariables,
66 std::vector<std::pair<storm::expressions::Variable, storm::expressions::Variable>> const& rowColumnMetaVariablePairs,
67 std::map<std::string, storm::dd::Bdd<Type>> labelToBddMap = std::map<std::string, storm::dd::Bdd<Type>>(),
68 std::unordered_map<std::string, RewardModelType> const& rewardModels = std::unordered_map<std::string, RewardModelType>());
69};
70
71} // namespace symbolic
72} // namespace models
73} // namespace storm
Base class for all deterministic symbolic models.
Model< Type, ValueType >::RewardModelType RewardModelType
DeterministicModel & operator=(DeterministicModel< Type, ValueType > &&other)=default
DeterministicModel(DeterministicModel< Type, ValueType > const &other)=default
DeterministicModel & operator=(DeterministicModel< Type, ValueType > const &other)=default
DeterministicModel(DeterministicModel< Type, ValueType > &&other)=default
Base class for all symbolic models.
Definition Model.h:42
storm::dd::Add< Type, ValueType > transitionMatrix
Definition Model.h:400