diff libinterp/corefcn/det.cc @ 20898:8da80da1ac37

maint: Use ovl() more places in the code.
author Rik <rik@octave.org>
date Mon, 14 Dec 2015 17:53:27 -0800
parents c07bee629973
children 48b2ad5ee801
line wrap: on
line diff
--- a/libinterp/corefcn/det.cc	Mon Dec 14 15:34:39 2015 -0800
+++ b/libinterp/corefcn/det.cc	Mon Dec 14 17:53:27 2015 -0800
@@ -145,8 +145,7 @@
         {
           octave_idx_type info;
           float rcond = 0.0;
-          // Always compute rcond, so we can detect numerically
-          // singular matrices.
+          // Always compute rcond, so we can detect singular matrices.
           FloatMatrix m = arg.float_matrix_value ();
 
           MAYBE_CAST (rep, octave_float_matrix);
@@ -161,8 +160,7 @@
         {
           octave_idx_type info;
           float rcond = 0.0;
-          // Always compute rcond, so we can detect numerically
-          // singular matrices.
+          // Always compute rcond, so we can detect singular matrices.
           FloatComplexMatrix m = arg.float_complex_matrix_value ();
 
           MAYBE_CAST (rep, octave_float_complex_matrix);
@@ -180,8 +178,7 @@
         {
           octave_idx_type info;
           double rcond = 0.0;
-          // Always compute rcond, so we can detect numerically
-          // singular matrices.
+          // Always compute rcond, so we can detect singular matrices.
           if (arg.is_sparse_type ())
             {
               SparseMatrix m = arg.sparse_matrix_value ();
@@ -208,8 +205,7 @@
         {
           octave_idx_type info;
           double rcond = 0.0;
-          // Always compute rcond, so we can detect numerically
-          // singular matrices.
+          // Always compute rcond, so we can detect singular matrices.
           if (arg.is_sparse_type ())
             {
               SparseComplexMatrix m = arg.sparse_complex_matrix_value ();