comparison libinterp/dldfcn/__eigs__.cc @ 19898: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 4bed806ee3d4
comparison
equal deleted inserted replaced
19897:09ed6f7538dd 19898:17d647821d61
268 268
269 } 269 }
270 270
271 // Note hold off reading B till later to avoid issues of double 271 // Note hold off reading B till later to avoid issues of double
272 // copies of the matrix if B is full/real while A is complex. 272 // copies of the matrix if B is full/real while A is complex.
273 if (!error_state && nargin > 1 + arg_offset && 273 if (! error_state && nargin > 1 + arg_offset
274 !(args(1 + arg_offset).is_real_scalar ())) 274 && ! (args(1 + arg_offset).is_real_scalar ()))
275 { 275 {
276 if (args(1+arg_offset).is_complex_type ()) 276 if (args(1+arg_offset).is_complex_type ())
277 { 277 {
278 b_arg = 1+arg_offset; 278 b_arg = 1+arg_offset;
279 have_b = true; 279 have_b = true;