From 531293955aa08db898177f9eda19e9214e42ada1 Mon Sep 17 00:00:00 2001 From: PBerger Date: Wed, 12 Jun 2013 21:02:30 +0200 Subject: [PATCH] Added std::move() calls in SparseMdpPrctlModelChecker.h Former-commit-id: 7e60c037f8a9806877251bb78349bd6bc21f4dca --- src/modelchecker/prctl/SparseMdpPrctlModelChecker.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modelchecker/prctl/SparseMdpPrctlModelChecker.h b/src/modelchecker/prctl/SparseMdpPrctlModelChecker.h index 1bac8ad37..335760964 100644 --- a/src/modelchecker/prctl/SparseMdpPrctlModelChecker.h +++ b/src/modelchecker/prctl/SparseMdpPrctlModelChecker.h @@ -442,9 +442,9 @@ public: storm::storage::BitVector infinityStates; storm::storage::BitVector trueStates(this->getModel().getNumberOfStates(), true); if (this->minimumOperatorStack.top()) { - infinityStates = storm::utility::graph::performProb1A(this->getModel(), this->getModel().getBackwardTransitions(), trueStates, *targetStates); + infinityStates = std::move(storm::utility::graph::performProb1A(this->getModel(), this->getModel().getBackwardTransitions(), trueStates, *targetStates)); } else { - infinityStates = storm::utility::graph::performProb1E(this->getModel(), this->getModel().getBackwardTransitions(), trueStates, *targetStates); + infinityStates = std::move(storm::utility::graph::performProb1E(this->getModel(), this->getModel().getBackwardTransitions(), trueStates, *targetStates)); } infinityStates.complement(); storm::storage::BitVector maybeStates = ~(*targetStates) & ~infinityStates;