From b7a1ba5b024ae57ca2a5bc3174c2c0c1ba3b4931 Mon Sep 17 00:00:00 2001 From: Felix Salfelder Date: Tue, 25 Oct 2016 17:47:28 +0100 Subject: [PATCH] interactively test MATRIX::s --- src/m_matrix.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/m_matrix.h b/src/m_matrix.h index 524a1e0b..1aa4b37e 100644 --- a/src/m_matrix.h +++ b/src/m_matrix.h @@ -602,7 +602,7 @@ T& BSMATRIX::m(unsigned r, unsigned c) */ template T BSMATRIX::s(unsigned row, unsigned col)const -{untested(); +{itested(); assert(_lownode); // assert(0 <= col); assert(col <= size()); @@ -612,7 +612,7 @@ T BSMATRIX::s(unsigned row, unsigned col)const if (col == row) {untested(); return d(row, col); - }else if (col > row) {untested(); /* above the diagonal */ + }else if (col > row) {itested(); /* above the diagonal */ if (row == 0) {untested(); return _trash; }else if (row < _lownode[col]) { -- 2.11.4.GIT