changeset 21138:e2fca7d79169

maint: Change unsupported warning for qrupdate LU to match common syntax. * CmplxLU.cc, dbleLU.cc, fCmplxLU.cc, floatLU.cc: Change unsupported warning for qrupdate LU to match that for err_disabled_feature.
author Rik <rik@octave.org>
date Sun, 24 Jan 2016 10:11:43 -0800
parents 623fc7d08cc6
children 538b57866b90
files liboctave/numeric/CmplxLU.cc liboctave/numeric/dbleLU.cc liboctave/numeric/fCmplxLU.cc liboctave/numeric/floatLU.cc
diffstat 4 files changed, 32 insertions(+), 16 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/numeric/CmplxLU.cc	Sat Jan 23 17:44:57 2016 -0800
+++ b/liboctave/numeric/CmplxLU.cc	Sun Jan 24 10:11:43 2016 -0800
@@ -193,26 +193,30 @@
 void ComplexLU::update (const ComplexColumnVector&, const ComplexColumnVector&)
 {
   (*current_liboctave_error_handler)
-    ("luupdate: not available in this version");
+    ("luupdate: support for qrupdate with LU updates "
+     "was unavailable or disabled when liboctave was built");
 }
 
 void ComplexLU::update (const ComplexMatrix&, const ComplexMatrix&)
 {
   (*current_liboctave_error_handler)
-    ("luupdate: not available in this version");
+    ("luupdate: support for qrupdate with LU updates "
+     "was unavailable or disabled when liboctave was built");
 }
 
 void ComplexLU::update_piv (const ComplexColumnVector&,
                             const ComplexColumnVector&)
 {
   (*current_liboctave_error_handler)
-    ("luupdate: not available in this version");
+    ("luupdate: support for qrupdate with LU updates "
+     "was unavailable or disabled when liboctave was built");
 }
 
 void ComplexLU::update_piv (const ComplexMatrix&, const ComplexMatrix&)
 {
   (*current_liboctave_error_handler)
-    ("luupdate: not available in this version");
+    ("luupdate: support for qrupdate with LU updates "
+     "was unavailable or disabled when liboctave was built");
 }
 
 #endif
--- a/liboctave/numeric/dbleLU.cc	Sat Jan 23 17:44:57 2016 -0800
+++ b/liboctave/numeric/dbleLU.cc	Sun Jan 24 10:11:43 2016 -0800
@@ -191,25 +191,29 @@
 void LU::update (const ColumnVector&, const ColumnVector&)
 {
   (*current_liboctave_error_handler)
-    ("luupdate: not available in this version");
+    ("luupdate: support for qrupdate with LU updates "
+     "was unavailable or disabled when liboctave was built");
 }
 
 void LU::update (const Matrix&, const Matrix&)
 {
   (*current_liboctave_error_handler)
-    ("luupdate: not available in this version");
+    ("luupdate: support for qrupdate with LU updates "
+     "was unavailable or disabled when liboctave was built");
 }
 
 void LU::update_piv (const ColumnVector&, const ColumnVector&)
 {
   (*current_liboctave_error_handler)
-    ("luupdate: not available in this version");
+    ("luupdate: support for qrupdate with LU updates "
+     "was unavailable or disabled when liboctave was built");
 }
 
 void LU::update_piv (const Matrix&, const Matrix&)
 {
   (*current_liboctave_error_handler)
-    ("luupdate: not available in this version");
+    ("luupdate: support for qrupdate with LU updates "
+     "was unavailable or disabled when liboctave was built");
 }
 
 #endif
--- a/liboctave/numeric/fCmplxLU.cc	Sat Jan 23 17:44:57 2016 -0800
+++ b/liboctave/numeric/fCmplxLU.cc	Sun Jan 24 10:11:43 2016 -0800
@@ -198,28 +198,32 @@
                              const FloatComplexColumnVector&)
 {
   (*current_liboctave_error_handler)
-    ("luupdate: not available in this version");
+    ("luupdate: support for qrupdate with LU updates "
+     "was unavailable or disabled when liboctave was built");
 }
 
 void FloatComplexLU::update (const FloatComplexMatrix&,
                              const FloatComplexMatrix&)
 {
   (*current_liboctave_error_handler)
-    ("luupdate: not available in this version");
+    ("luupdate: support for qrupdate with LU updates "
+     "was unavailable or disabled when liboctave was built");
 }
 
 void FloatComplexLU::update_piv (const FloatComplexColumnVector&,
                                  const FloatComplexColumnVector&)
 {
   (*current_liboctave_error_handler)
-    ("luupdate: not available in this version");
+    ("luupdate: support for qrupdate with LU updates "
+     "was unavailable or disabled when liboctave was built");
 }
 
 void FloatComplexLU::update_piv (const FloatComplexMatrix&,
                                  const FloatComplexMatrix&)
 {
   (*current_liboctave_error_handler)
-    ("luupdate: not available in this version");
+    ("luupdate: support for qrupdate with LU updates "
+     "was unavailable or disabled when liboctave was built");
 }
 
 #endif
--- a/liboctave/numeric/floatLU.cc	Sat Jan 23 17:44:57 2016 -0800
+++ b/liboctave/numeric/floatLU.cc	Sun Jan 24 10:11:43 2016 -0800
@@ -193,25 +193,29 @@
 void FloatLU::update (const FloatColumnVector&, const FloatColumnVector&)
 {
   (*current_liboctave_error_handler)
-    ("luupdate: not available in this version");
+    ("luupdate: support for qrupdate with LU updates "
+     "was unavailable or disabled when liboctave was built");
 }
 
 void FloatLU::update (const FloatMatrix&, const FloatMatrix&)
 {
   (*current_liboctave_error_handler)
-    ("luupdate: not available in this version");
+    ("luupdate: support for qrupdate with LU updates "
+     "was unavailable or disabled when liboctave was built");
 }
 
 void FloatLU::update_piv (const FloatColumnVector&, const FloatColumnVector&)
 {
   (*current_liboctave_error_handler)
-    ("luupdate: not available in this version");
+    ("luupdate: support for qrupdate with LU updates "
+     "was unavailable or disabled when liboctave was built");
 }
 
 void FloatLU::update_piv (const FloatMatrix&, const FloatMatrix&)
 {
   (*current_liboctave_error_handler)
-    ("luupdate: not available in this version");
+    ("luupdate: support for qrupdate with LU updates "
+     "was unavailable or disabled when liboctave was built");
 }
 
 #endif