Browse Source

fix in permute when no rowgroupindices where given

main
Sebastian Junges 5 years ago
parent
commit
9e13f42a03
  1. 4
      src/storm/storage/SparseMatrix.cpp

4
src/storm/storage/SparseMatrix.cpp

@ -1205,7 +1205,9 @@ namespace storm {
}
// Finally create matrix and return result.
auto result = matrixBuilder.build();
result.setRowGroupIndices(this->rowGroupIndices.get());
if (this->rowGroupIndices) {
result.setRowGroupIndices(this->rowGroupIndices.get());
}
return result;
}

Loading…
Cancel
Save