aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/SparseCore/SparseTriangularView.h
diff options
context:
space:
mode:
authorGravatar Christoph Hertzberg <chtz@informatik.uni-bremen.de>2014-10-31 17:12:13 +0100
committerGravatar Christoph Hertzberg <chtz@informatik.uni-bremen.de>2014-10-31 17:12:13 +0100
commit0833b82efd3988aaa71841b678bead016edd6bab (patch)
tree74f7855869330b26f7225ab328bf128a13e14781 /Eigen/src/SparseCore/SparseTriangularView.h
parent4ec2f07a5bfc17bc98882ccfde7065d42b3a728c (diff)
Run sparse_basic unit tests also for rectangular matrices.
TriangularView with UnitDiag does not work properly yet (bug #901)
Diffstat (limited to 'Eigen/src/SparseCore/SparseTriangularView.h')
-rw-r--r--Eigen/src/SparseCore/SparseTriangularView.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/SparseCore/SparseTriangularView.h b/Eigen/src/SparseCore/SparseTriangularView.h
index e051f4486..b044d6778 100644
--- a/Eigen/src/SparseCore/SparseTriangularView.h
+++ b/Eigen/src/SparseCore/SparseTriangularView.h
@@ -213,7 +213,7 @@ public:
{
if((!SkipFirst) && Base::operator bool())
Base::operator++();
- m_returnOne = true;
+ m_returnOne = true; // FIXME check innerSize()>outer();
}
}
@@ -228,7 +228,7 @@ public:
{
if((!SkipFirst) && Base::operator bool())
Base::operator++();
- m_returnOne = true;
+ m_returnOne = true; // FIXME check innerSize()>outer();
}
}
return *this;