181 |
|
{ |
182 |
|
if (col > 2) |
183 |
|
{ |
184 |
< |
obErrorLog.ThrowError(__FUNCTION__, |
184 |
> |
obErrorLog.ThrowError(__func__, |
185 |
|
"The method was called with col > 2.", obError); |
186 |
|
} |
187 |
|
|
194 |
|
{ |
195 |
|
if (row > 2) |
196 |
|
{ |
197 |
< |
obErrorLog.ThrowError(__FUNCTION__, |
197 |
> |
obErrorLog.ThrowError(__func__, |
198 |
|
"The method was called with row > 2.", obError); |
199 |
|
} |
200 |
|
|
207 |
|
{ |
208 |
|
if (col > 2) |
209 |
|
{ |
210 |
< |
obErrorLog.ThrowError(__FUNCTION__, |
210 |
> |
obErrorLog.ThrowError(__func__, |
211 |
|
"The method was called with col > 2.", obError); |
212 |
|
} |
213 |
|
|
218 |
|
{ |
219 |
|
if (row > 2) |
220 |
|
{ |
221 |
< |
obErrorLog.ThrowError(__FUNCTION__, |
221 |
> |
obErrorLog.ThrowError(__func__, |
222 |
|
"The method was called with row > 2.", obError); |
223 |
|
} |
224 |
|
|
291 |
|
double det = determinant(); |
292 |
|
if (fabs(det) <= 1e-6) |
293 |
|
{ |
294 |
< |
obErrorLog.ThrowError(__FUNCTION__, |
294 |
> |
obErrorLog.ThrowError(__func__, |
295 |
|
"The method was called on a matrix with |determinant| <= 1e-6.", obError); |
296 |
|
} |
297 |
|
|
431 |
|
|
432 |
|
if (!isSymmetric()) |
433 |
|
{ |
434 |
< |
obErrorLog.ThrowError(__FUNCTION__, |
434 |
> |
obErrorLog.ThrowError(__func__, |
435 |
|
"The method was called on a matrix that was not symmetric, i.e. where isSymetric() == false.", obError); |
436 |
|
} |
437 |
|
|