Browse Source

Added some newlines.

tempestpy_adaptions
dehnert 12 years ago
parent
commit
92fe051924
  1. 2
      src/modelchecker/GmmxxMdpPrctlModelChecker.h

2
src/modelchecker/GmmxxMdpPrctlModelChecker.h

@ -68,9 +68,11 @@ private:
// Now perform matrix-vector multiplication as long as we meet the bound of the formula. // Now perform matrix-vector multiplication as long as we meet the bound of the formula.
for (uint_fast64_t i = 0; i < n; ++i) { for (uint_fast64_t i = 0; i < n; ++i) {
gmm::mult(*gmmxxMatrix, x, multiplyResult); gmm::mult(*gmmxxMatrix, x, multiplyResult);
if (b != nullptr) { if (b != nullptr) {
gmm::add(*b, multiplyResult); gmm::add(*b, multiplyResult);
} }
if (this->minimumOperatorStack.top()) { if (this->minimumOperatorStack.top()) {
storm::utility::reduceVectorMin(multiplyResult, &x, nondeterministicChoiceIndices); storm::utility::reduceVectorMin(multiplyResult, &x, nondeterministicChoiceIndices);
} else { } else {

Loading…
Cancel
Save