comparison libinterp/corefcn/inv.cc @ 21112:358aa7fcbd33

Rename errwarn_singular_matrix to warn_singular_matrix. * inv.cc, sparse-xdiv.cc, xdiv.cc, CMatrix.cc, CSparse.cc, dMatrix.cc, dSparse.cc, fCMatrix.cc, fMatrix.cc, lo-array-errwarn.cc, lo-array-errwarn.h: Rename errwarn_singular_matrix to warn_singular_matrix.
author Rik <rik@octave.org>
date Tue, 19 Jan 2016 15:43:18 -0800
parents 3d0d84305600
children df7891224709
comparison
equal deleted inserted replaced
21111:7bb96a8df912 21112:358aa7fcbd33
204 volatile double xrcond = rcond; 204 volatile double xrcond = rcond;
205 rcond_plus_one_eq_one = xrcond + 1.0 == 1.0; 205 rcond_plus_one_eq_one = xrcond + 1.0 == 1.0;
206 } 206 }
207 207
208 if (nargout < 2 && (info == -1 || rcond_plus_one_eq_one)) 208 if (nargout < 2 && (info == -1 || rcond_plus_one_eq_one))
209 errwarn_singular_matrix (isfloat ? frcond : rcond); 209 warn_singular_matrix (isfloat ? frcond : rcond);
210 210
211 return retval; 211 return retval;
212 } 212 }
213 213
214 /* 214 /*