aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/src/LevenbergMarquardt
diff options
context:
space:
mode:
authorGravatar Hauke Heibel <hauke.heibel@gmail.com>2013-02-28 11:38:34 +0100
committerGravatar Hauke Heibel <hauke.heibel@gmail.com>2013-02-28 11:38:34 +0100
commit83aac6d54c8222321c8c71e46e034011d99b12ea (patch)
treefd0acdd641b27c3465edbcc7bdf21eddb7a0993c /unsupported/Eigen/src/LevenbergMarquardt
parent5882f1631db7df1a809270b4f2c0c5ae6da0130b (diff)
MSVC fix; the compiler failed to detect the correct overload.
Diffstat (limited to 'unsupported/Eigen/src/LevenbergMarquardt')
-rw-r--r--unsupported/Eigen/src/LevenbergMarquardt/LMqrsolv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/unsupported/Eigen/src/LevenbergMarquardt/LMqrsolv.h b/unsupported/Eigen/src/LevenbergMarquardt/LMqrsolv.h
index ed6f97fe8..f5290dee4 100644
--- a/unsupported/Eigen/src/LevenbergMarquardt/LMqrsolv.h
+++ b/unsupported/Eigen/src/LevenbergMarquardt/LMqrsolv.h
@@ -19,9 +19,9 @@ namespace Eigen {
namespace internal {
-template <typename Scalar,int SizeAtCompileTime, typename Index>
+template <typename Scalar,int Rows, int Cols, typename Index>
void lmqrsolv(
- Matrix<Scalar,SizeAtCompileTime,SizeAtCompileTime> &s,
+ Matrix<Scalar,Rows,Cols> &s,
const PermutationMatrix<Dynamic,Dynamic,Index> &iPerm,
const Matrix<Scalar,Dynamic,1> &diag,
const Matrix<Scalar,Dynamic,1> &qtb,