From 357fe3641d696b0d7b878ca2d4e1b45639dff5f8 Mon Sep 17 00:00:00 2001 From: Desire NUENTSA Date: Tue, 25 Sep 2012 11:55:33 +0200 Subject: [PATCH] Correct reference to iterative scaling method --- Eigen/src/SparseLU/SparseLU.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Eigen/src/SparseLU/SparseLU.h b/Eigen/src/SparseLU/SparseLU.h index 6f4458a26..9ea121ce5 100644 --- a/Eigen/src/SparseLU/SparseLU.h +++ b/Eigen/src/SparseLU/SparseLU.h @@ -60,7 +60,8 @@ namespace Eigen { * * \NOTE Unlike the initial SuperLU implementation, there is no step to equilibrate the matrix. * For badly scaled matrices, this step can be useful to reduce the pivoting during factorization. - * If this is the case for your matrices, you can try the basic scaling method in \ref Scaling. + * If this is the case for your matrices, you can try the basic scaling method at + * "unsupported/Eigen/src/IterativeSolvers/Scaling.h" * * \tparam _MatrixType The type of the sparse matrix. It must be a column-major SparseMatrix<> * \tparam _OrderingType The ordering method to use, either AMD, COLAMD or METIS