From d03f8eeb9d958f1e24ae26f6a4eb3d77079427fb Mon Sep 17 00:00:00 2001 From: gereon Date: Tue, 23 Apr 2013 16:57:20 +0200 Subject: [PATCH] Added checks, if we actually have a model before accessing it... --- src/adapters/ExplicitModelAdapter.cpp | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/src/adapters/ExplicitModelAdapter.cpp b/src/adapters/ExplicitModelAdapter.cpp index e9f4263d6..dd5fb247e 100644 --- a/src/adapters/ExplicitModelAdapter.cpp +++ b/src/adapters/ExplicitModelAdapter.cpp @@ -35,18 +35,21 @@ ExplicitModelAdapter::~ExplicitModelAdapter() { } std::shared_ptr ExplicitModelAdapter::getModel(std::string const & rewardModelName) { - - if (rewardModelName != "") { - this->rewardModel = this->program->getRewardModel(rewardModelName); - } + this->buildTransitionMap(); std::shared_ptr stateLabeling = this->getStateLabeling(this->program->getLabels()); std::shared_ptr> stateRewards = nullptr; - if (this->rewardModel->hasStateRewards()) { - stateRewards = this->getStateRewards(this->rewardModel->getStateRewards()); + this->rewardModel = nullptr; + if (rewardModelName != "") { + this->rewardModel = this->program->getRewardModel(rewardModelName); + if (this->rewardModel != nullptr) { + if (this->rewardModel->hasStateRewards()) { + stateRewards = this->getStateRewards(this->rewardModel->getStateRewards()); + } + } } switch (this->program->getModelType()) @@ -413,7 +416,7 @@ ExplicitModelAdapter::~ExplicitModelAdapter() { std::shared_ptr> result(new storm::storage::SparseMatrix(allStates.size())); result->initialize(numberOfTransitions); - if (this->rewardModel->hasTransitionRewards()) { + if ((this->rewardModel != nullptr) && (this->rewardModel->hasTransitionRewards())) { this->transitionRewards = std::shared_ptr>(new storm::storage::SparseMatrix(allStates.size())); this->transitionRewards->initialize(numberOfTransitions); } @@ -427,7 +430,7 @@ ExplicitModelAdapter::~ExplicitModelAdapter() { for (auto choice : transitionMap[state]) { for (auto elem : choice.second) { map[elem.first] += elem.second; - if (this->rewardModel->hasTransitionRewards()) { + if ((this->rewardModel != nullptr) && (this->rewardModel->hasTransitionRewards())) { for (auto reward : this->rewardModel->getTransitionRewards()) { rewardMap[elem.first] += reward->getReward(choice.first, this->allStates[state]); } @@ -438,7 +441,7 @@ ExplicitModelAdapter::~ExplicitModelAdapter() { double factor = 1.0 / transitionMap[state].size(); for (auto it : map) { result->addNextValue(state, it.first, it.second * factor); - if (this->rewardModel->hasTransitionRewards()) { + if ((this->rewardModel != nullptr) && (this->rewardModel->hasTransitionRewards())) { this->transitionRewards->addNextValue(state, it.first, rewardMap[it.first] * factor); } } @@ -468,7 +471,7 @@ ExplicitModelAdapter::~ExplicitModelAdapter() { for (auto choice : transitionMap[state]) { for (auto it : choice.second) { result->addNextValue(nextRow, it.first, it.second); - if (this->rewardModel->hasTransitionRewards()) { + if ((this->rewardModel != nullptr) && (this->rewardModel->hasTransitionRewards())) { double rewardValue = 0; for (auto reward : this->rewardModel->getTransitionRewards()) { rewardValue = reward->getReward(choice.first, this->allStates[state]);