aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/householder.cpp
diff options
context:
space:
mode:
authorGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2011-01-06 11:30:19 +0000
committerGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2011-01-06 11:30:19 +0000
commit2cc75f492234ead80c2707f6338cb6f33686da43 (patch)
tree352355fe7fcf7235a3c154fc80690aa5cc2c5632 /test/householder.cpp
parent934720c4ba287e6e1b1e398cf78e99d1f174705e (diff)
Make HouseholderSequence::setTrans() protected (cf. bug #50).
Users can call .transpose() instead.
Diffstat (limited to 'test/householder.cpp')
-rw-r--r--test/householder.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/householder.cpp b/test/householder.cpp
index fe865b6ce..8031025e5 100644
--- a/test/householder.cpp
+++ b/test/householder.cpp
@@ -104,7 +104,6 @@ template<typename MatrixType> void householder(const MatrixType& m)
HCoeffsVectorType hc = qr.hCoeffs().conjugate();
HouseholderSequence<MatrixType, HCoeffsVectorType> hseq(m2, hc);
hseq.setLength(hc.size()).setShift(shift);
- VERIFY(hseq.trans() == false);
VERIFY(hseq.length() == hc.size());
VERIFY(hseq.shift() == shift);