Browse Source

The GmmxxAdapter converts to a Row-Major Matrix, not column-major.

tempestpy_adaptions
PBerger 12 years ago
parent
commit
9e416b69e5
  1. 2
      src/adapters/GmmxxAdapter.h

2
src/adapters/GmmxxAdapter.h

@ -23,7 +23,7 @@ class GmmxxAdapter {
public:
/*!
* Converts a sparse matrix into the sparse matrix in the gmm++ format.
* @return A pointer to a column-major sparse matrix in gmm++ format.
* @return A pointer to a row-major sparse matrix in gmm++ format.
*/
template<class T>
static gmm::csr_matrix<T>* toGmmxxSparseMatrix(storm::storage::SparseMatrix<T> const& matrix) {

Loading…
Cancel
Save