aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2013-02-22 14:45:42 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2013-02-22 14:45:42 +0100
commite71bc79f2a9620f0c37a1af5668541d6028c5c9c (patch)
treecce5d59ed562ad64e8bfc20d0181f091862faa44 /Eigen
parentbd8c9c69e4b32384d161f097e769ece68b227cf4 (diff)
SparseLU does not accept row-major matrices for the destination.
Diffstat (limited to 'Eigen')
-rw-r--r--Eigen/src/SparseLU/SparseLU.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Eigen/src/SparseLU/SparseLU.h b/Eigen/src/SparseLU/SparseLU.h
index a7296dc0b..819a6df38 100644
--- a/Eigen/src/SparseLU/SparseLU.h
+++ b/Eigen/src/SparseLU/SparseLU.h
@@ -141,6 +141,8 @@ class SparseLU : public internal::SparseLUImpl<typename _MatrixType::Scalar, typ
/** \returns the solution X of \f$ A X = B \f$ using the current decomposition of A.
*
+ * \warning the destination matrix X in X = this->solve(B) must be colmun-major.
+ *
* \sa compute()
*/
template<typename Rhs>