Changeset 13045


Ignore:
Timestamp:
08/15/12 16:09:20 (13 years ago)
Author:
Mathieu Morlighem
Message:

BUG: Echo was not displaying ncols but nrows

Location:
issm/trunk-jpl/src/c/classes/matrix
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/matrix/ElementMatrix.cpp

    r13036 r13045  
    378378        int i,j;
    379379        _printLine_("Element Matrix echo:");
    380         _printLine_("   nrows: " << nrows);
    381         _printLine_("   ncols: " << nrows);
     380        _printLine_("   nrows: " << this->nrows);
     381        _printLine_("   ncols: " << this->ncols);
    382382        _printLine_("   dofsymmetrical: " << (dofsymmetrical?"true":"false"));
    383383
  • issm/trunk-jpl/src/c/classes/matrix/Matrix.cpp

    r13036 r13045  
    150150/*FUNCTION Matrix::Echo{{{*/
    151151void Matrix::Echo(void){
     152        _assert_(this);
    152153
    153154        if(type==PetscMatType){
Note: See TracChangeset for help on using the changeset viewer.