Browse Source

extend debug output of gmmxx adapter

tempestpy_adaptions
TimQu 7 years ago
parent
commit
1f71e9af79
  1. 2
      src/storm/adapters/GmmxxAdapter.h

2
src/storm/adapters/GmmxxAdapter.h

@ -23,7 +23,7 @@ namespace storm {
template<class T>
static std::unique_ptr<gmm::csr_matrix<T>> toGmmxxSparseMatrix(storm::storage::SparseMatrix<T> const& matrix) {
uint_fast64_t realNonZeros = matrix.getEntryCount();
STORM_LOG_DEBUG("Converting matrix with " << realNonZeros << " non-zeros to gmm++ format.");
STORM_LOG_DEBUG("Converting " << matrix.getRowCount() << "x" << matrix.getColumnCount() << " matrix with " << realNonZeros << " non-zeros to gmm++ format.");
// Prepare the resulting matrix.
std::unique_ptr<gmm::csr_matrix<T>> result(new gmm::csr_matrix<T>(matrix.getRowCount(), matrix.getColumnCount()));

Loading…
Cancel
Save