# HG changeset patch # User Rik # Date 1453659103 28800 # Node ID e2fca7d79169446c0a2b578917eab824df514016 # Parent 623fc7d08cc68180beeca8fb5f2f6fca5c1ec947 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. diff -r 623fc7d08cc6 -r e2fca7d79169 liboctave/numeric/CmplxLU.cc --- 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 diff -r 623fc7d08cc6 -r e2fca7d79169 liboctave/numeric/dbleLU.cc --- 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 diff -r 623fc7d08cc6 -r e2fca7d79169 liboctave/numeric/fCmplxLU.cc --- 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 diff -r 623fc7d08cc6 -r e2fca7d79169 liboctave/numeric/floatLU.cc --- 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