Browse Source

Added std::move() calls in SparseMdpPrctlModelChecker.h

Former-commit-id: 7e60c037f8
tempestpy_adaptions
PBerger 12 years ago
parent
commit
531293955a
  1. 4
      src/modelchecker/prctl/SparseMdpPrctlModelChecker.h

4
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;

Loading…
Cancel
Save