Browse Source

fixing warning: unused variable pr

tempestpy_adaptions
gereon 12 years ago
parent
commit
8aca56ea5b
  1. 2
      src/modelChecker/EigenDtmcPrctlModelChecker.h

2
src/modelChecker/EigenDtmcPrctlModelChecker.h

@ -138,7 +138,7 @@ public:
// Create resulting vector. // Create resulting vector.
std::vector<Type>* result = new std::vector<Type>(this->getModel().getNumberOfStates()); std::vector<Type>* result = new std::vector<Type>(this->getModel().getNumberOfStates());
Type *pr = &((*result)[0]); // get the address storing the data for result
// Type *pr = &((*result)[0]); // get the address storing the data for result
MapType vectorResult(px, result->size()); // vectorResult shares data MapType vectorResult(px, result->size()); // vectorResult shares data
// Perform the actual computation. // Perform the actual computation.

Loading…
Cancel
Save