From 1f71e9af79109c1b72dcbdbf4d9bf9fbea0620f1 Mon Sep 17 00:00:00 2001 From: TimQu Date: Wed, 5 Jul 2017 14:33:50 +0200 Subject: [PATCH] extend debug output of gmmxx adapter --- src/storm/adapters/GmmxxAdapter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storm/adapters/GmmxxAdapter.h b/src/storm/adapters/GmmxxAdapter.h index 45f7c5231..dd14ddc4d 100644 --- a/src/storm/adapters/GmmxxAdapter.h +++ b/src/storm/adapters/GmmxxAdapter.h @@ -23,7 +23,7 @@ namespace storm { template static std::unique_ptr> toGmmxxSparseMatrix(storm::storage::SparseMatrix 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> result(new gmm::csr_matrix(matrix.getRowCount(), matrix.getColumnCount()));