From a0a8bf704a3db0fdf7aef2acaa57771e6015c8f8 Mon Sep 17 00:00:00 2001 From: dehnert Date: Fri, 12 Sep 2014 03:04:39 +0200 Subject: [PATCH] Fixed some minor issues in the sparse matrix. Former-commit-id: c7690b5a1395ea2b35fb50df32de286611cff610 --- src/storage/SparseMatrix.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/storage/SparseMatrix.cpp b/src/storage/SparseMatrix.cpp index f310c61ad..010cc36bf 100644 --- a/src/storage/SparseMatrix.cpp +++ b/src/storage/SparseMatrix.cpp @@ -56,13 +56,13 @@ namespace storm { template SparseMatrixBuilder::SparseMatrixBuilder(index_type rows, index_type columns, index_type entries, bool forceDimensions, bool hasCustomRowGrouping, index_type rowGroups) : initialRowCountSet(rows != 0), initialRowCount(rows), initialColumnCountSet(columns != 0), initialColumnCount(columns), initialEntryCountSet(entries != 0), initialEntryCount(entries), forceInitialDimensions(forceDimensions), hasCustomRowGrouping(hasCustomRowGrouping), initialRowGroupCountSet(rowGroups != 0), initialRowGroupCount(rowGroups), rowGroupIndices(), columnsAndValues(), rowIndications(), currentEntryCount(0), lastRow(0), lastColumn(0), highestColumn(0), currentRowGroup(0) { // Prepare the internal storage. - if (initialRowCountSet > 0) { + if (initialRowCountSet) { rowIndications.reserve(initialRowCount + 1); } - if (initialEntryCountSet > 0) { + if (initialEntryCountSet) { columnsAndValues.reserve(initialEntryCount); } - if (initialRowGroupCountSet > 0) { + if (initialRowGroupCountSet) { rowGroupIndices.reserve(initialRowGroupCount + 1); } rowIndications.push_back(0); @@ -750,8 +750,8 @@ namespace storm { const_iterator it = this->begin(); const_iterator ite; std::vector::const_iterator rowIterator = rowIndications.begin(); - std::vector::iterator resultIterator = result.begin(); - std::vector::iterator resultIteratorEnd = result.end(); + typename std::vector::iterator resultIterator = result.begin(); + typename std::vector::iterator resultIteratorEnd = result.end(); for (; resultIterator != resultIteratorEnd; ++rowIterator, ++resultIterator) { *resultIterator = storm::utility::constantZero(); @@ -773,8 +773,8 @@ namespace storm { const_iterator ite; std::vector::const_iterator rowIterator = this->rowIndications.begin() + startRow; std::vector::const_iterator rowIteratorEnd = this->rowIndications.begin() + endRow; - std::vector::iterator resultIterator = result.begin() + startRow; - std::vector::iterator resultIteratorEnd = result.begin() + endRow; + typename std::vector::iterator resultIterator = result.begin() + startRow; + typename std::vector::iterator resultIteratorEnd = result.begin() + endRow; for (; resultIterator != resultIteratorEnd; ++rowIterator, ++resultIterator) { *resultIterator = storm::utility::constantZero();