Browse Source

Removed unused variable + dependent code

tempestpy_adaptions
Matthias Volk 5 years ago
parent
commit
c039b817ef
  1. 8
      src/storm/modelchecker/prctl/helper/rewardbounded/ProductModel.cpp

8
src/storm/modelchecker/prctl/helper/rewardbounded/ProductModel.cpp

@ -109,14 +109,6 @@ namespace storm {
dimensionIndexMap.push_back(globalDimensionIndex);
}
bool objectiveContainsLowerBound = false;
for (auto const& globalDimensionIndex : objectiveDimensions[objIndex]) {
if (dimensions[globalDimensionIndex].boundType == DimensionBoundType::LowerBound) {
objectiveContainsLowerBound = true;
break;
}
}
// collect the memory states for this objective
std::vector<storm::storage::BitVector> objMemStates;
storm::storage::BitVector m(dimensionIndexMap.size(), false);

Loading…
Cancel
Save