aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/geo_hyperplane.cpp
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-07-06 17:12:10 +0200
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-07-06 17:12:10 +0200
commite093b43b2c40f00495937c3134bf55ba29676993 (patch)
treec4366eb524f7b01670b47b8230d98e313ade4a06 /test/geo_hyperplane.cpp
parent0c2232e5d972986ed90c917b68fb24eef372841b (diff)
* rename QR to HouseholderQR because really that impacts the API, not just the impl.
* rename qr() to householderQr(), for same reason. * clarify that it's non-pivoting, non-rank-revealing, so remove all the rank API, make solve() be void instead of bool, update the docs/test, etc. * fix warning in SVD
Diffstat (limited to 'test/geo_hyperplane.cpp')
-rw-r--r--test/geo_hyperplane.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/geo_hyperplane.cpp b/test/geo_hyperplane.cpp
index c5d2715db..f8281a16b 100644
--- a/test/geo_hyperplane.cpp
+++ b/test/geo_hyperplane.cpp
@@ -64,7 +64,7 @@ template<typename HyperplaneType> void hyperplane(const HyperplaneType& _plane)
// transform
if (!NumTraits<Scalar>::IsComplex)
{
- MatrixType rot = MatrixType::Random(dim,dim).qr().matrixQ();
+ MatrixType rot = MatrixType::Random(dim,dim).householderQr().matrixQ();
DiagonalMatrix<Scalar,HyperplaneType::AmbientDimAtCompileTime> scaling(VectorType::Random());
Translation<Scalar,HyperplaneType::AmbientDimAtCompileTime> translation(VectorType::Random());