Storm 1.10.0.1
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
DeterministicModel.h
Go to the documentation of this file.
1#ifndef STORM_MODELS_SYMBOLIC_DETERMINISTICMODEL_H_
2#define STORM_MODELS_SYMBOLIC_DETERMINISTICMODEL_H_
3
5
6namespace storm {
7namespace models {
8namespace symbolic {
9
13template<storm::dd::DdType Type, typename ValueType = double>
14class DeterministicModel : public Model<Type, ValueType> {
15 public:
17
22
40 DeterministicModel(storm::models::ModelType const& modelType, std::shared_ptr<storm::dd::DdManager<Type>> manager, storm::dd::Bdd<Type> reachableStates,
42 std::set<storm::expressions::Variable> const& rowVariables,
43 std::shared_ptr<storm::adapters::AddExpressionAdapter<Type, ValueType>> rowExpressionAdapter,
44 std::set<storm::expressions::Variable> const& columnVariables,
45 std::vector<std::pair<storm::expressions::Variable, storm::expressions::Variable>> const& rowColumnMetaVariablePairs,
46 std::map<std::string, storm::expressions::Expression> labelToExpressionMap = std::map<std::string, storm::expressions::Expression>(),
47 std::unordered_map<std::string, RewardModelType> const& rewardModels = std::unordered_map<std::string, RewardModelType>());
48
64 DeterministicModel(storm::models::ModelType const& modelType, std::shared_ptr<storm::dd::DdManager<Type>> manager, storm::dd::Bdd<Type> reachableStates,
66 std::set<storm::expressions::Variable> const& rowVariables, std::set<storm::expressions::Variable> const& columnVariables,
67 std::vector<std::pair<storm::expressions::Variable, storm::expressions::Variable>> const& rowColumnMetaVariablePairs,
68 std::map<std::string, storm::dd::Bdd<Type>> labelToBddMap = std::map<std::string, storm::dd::Bdd<Type>>(),
69 std::unordered_map<std::string, RewardModelType> const& rewardModels = std::unordered_map<std::string, RewardModelType>());
70};
71
72} // namespace symbolic
73} // namespace models
74} // namespace storm
75
76#endif /* STORM_MODELS_SYMBOLIC_DETERMINISTICMODEL_H_ */
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:45
storm::dd::Add< Type, ValueType > transitionMatrix
Definition Model.h:410
LabParser.cpp.