aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/SparseQR
diff options
context:
space:
mode:
authorGravatar Desire NUENTSA <desire.nuentsa_wakam@inria.fr>2013-02-20 14:00:28 +0100
committerGravatar Desire NUENTSA <desire.nuentsa_wakam@inria.fr>2013-02-20 14:00:28 +0100
commitdca7190e15d5f787cfe84830bc4169e013154c5b (patch)
treea9f1c4c3dedad05eb0465bea4bdcc68cf7f69b46 /Eigen/src/SparseQR
parent19de016fef2dacccec001fa1b1561eb81517fca0 (diff)
Add setPivotThreshold to Sparse QR
Diffstat (limited to 'Eigen/src/SparseQR')
-rw-r--r--Eigen/src/SparseQR/SparseQR.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/SparseQR/SparseQR.h b/Eigen/src/SparseQR/SparseQR.h
index be072e40b..7ea98fa3d 100644
--- a/Eigen/src/SparseQR/SparseQR.h
+++ b/Eigen/src/SparseQR/SparseQR.h
@@ -159,7 +159,7 @@ class SparseQR
* reflections. Precisely, if the norm of a householder reflection is below this
* threshold, the entire column is treated as zero.
*/
- void setThreshold(const RealScalar& threshold)
+ void setPivotThreshold(const RealScalar& threshold)
{
m_useDefaultThreshold = false;
m_threshold = threshold;