Changeset 14922
- Timestamp:
- 05/06/13 10:26:55 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk-jpl/src/c/classes/objects/Bucket.h ¶
r14914 r14922 99 99 _printLine_("bucket type: " << type); 100 100 _printLine_("num rows: "<<this->m<<" num cols: "<<this->n); 101 if(type= MATRIX_BUCKET){101 if(type==MATRIX_BUCKET){ 102 102 for (i=0;i<this->m;i++){ 103 103 _printLine_("row "<<this->idxm[i]<<", column indices: "); … … 111 111 } 112 112 } 113 else if(type= VECTOR_BUCKET){113 else if(type==VECTOR_BUCKET){ 114 114 for (i=0;i<this->m;i++){ 115 115 _printLine_("row "<<this->idxm[i]<<", value " << this->values[i]);
Note:
See TracChangeset
for help on using the changeset viewer.