comparison liboctave/array/MatrixType.h @ 20071:17d647821d61

maint: More cleanup of C++ code to follow Octave coding conventions. * gl-select.cc, betainc.cc, bitfcns.cc, bsxfun.cc, gl-render.cc, graphics.cc, load-save.cc, ls-mat-ascii.cc, ls-mat5.cc, lu.cc, oct-stream.cc, symtab.cc, variables.cc, __eigs__.cc, __magick_read__.cc, chol.cc, ov-base-sparse.cc, ov-class.cc, ov-classdef.cc, ov-fcn-inline.cc, ov-perm.cc, ov.cc, CMatrix.cc, CSparse.cc, MSparse.cc, MatrixType.cc, MatrixType.h, dMatrix.cc, dSparse.cc, fCMatrix.cc, fMatrix.cc, eigs-base.cc, lo-sysdep.cc, kpse.cc: Break long lines before && and ||.
author John W. Eaton <jwe@octave.org>
date Thu, 26 Feb 2015 13:07:04 -0500
parents 4197fc428c7d
children
comparison
equal deleted inserted replaced
20070:09ed6f7538dd 20071:17d647821d61
119 bool is_tridiagonal (void) const 119 bool is_tridiagonal (void) const
120 { return (typ == Tridiagonal || typ == Tridiagonal_Hermitian); } 120 { return (typ == Tridiagonal || typ == Tridiagonal_Hermitian); }
121 121
122 bool is_hermitian (void) const 122 bool is_hermitian (void) const
123 { 123 {
124 return (typ == Banded_Hermitian || typ == Tridiagonal_Hermitian || 124 return (typ == Banded_Hermitian || typ == Tridiagonal_Hermitian
125 typ == Hermitian); 125 || typ == Hermitian);
126 } 126 }
127 127
128 bool is_rectangular (void) const { return (typ == Rectangular); } 128 bool is_rectangular (void) const { return (typ == Rectangular); }
129 129
130 bool is_known (void) const { return (typ != Unknown); } 130 bool is_known (void) const { return (typ != Unknown); }