Skip to content
Snippets Groups Projects
Commit 374e18aa authored by Andreas Nüßing's avatar Andreas Nüßing Committed by Markus Blatt
Browse files

[PATCH] [bugfix] writeMatrixMarket swapped the meaning of matrix.{N,M}()

parent cedf0683
No related branches found
No related tags found
No related merge requests found
......@@ -921,8 +921,8 @@ namespace Dune
std::ostream& ostr,
const integral_constant<int,1>&)
{
ostr<<matrix.M()*mm_multipliers<M>::rows<<" "
<<matrix.N()*mm_multipliers<M>::cols<<" "
ostr<<matrix.N()*mm_multipliers<M>::rows<<" "
<<matrix.M()*mm_multipliers<M>::cols<<" "
<<countNonZeros(matrix)<<std::endl;
typedef typename M::const_iterator riterator;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment