diff --git a/smat.h b/smat.h index 026cd31..0cf95ac 100644 --- a/smat.h +++ b/smat.h @@ -280,13 +280,13 @@ inline const T & NRSMat::operator[](const int ij) const template inline T SMat_index(T i, T j) { -return i>=j ? i*(i+1)/2+j : j*(j+1)/2+i; +return (i>=j) ? i*(i+1)/2+j : j*(j+1)/2+i; } template inline T SMat_index_1(T i, T j) { -return i>j? i*(i-1)/2+j-1 : j*(j-1)/2+i-1; +return (i>=j)? i*(i-1)/2+j-1 : j*(j-1)/2+i-1; } // access the element, 2-dim array case