diff options
author | Gael Guennebaud <g.gael@free.fr> | 2009-07-28 17:35:07 +0200 |
---|---|---|
committer | Gael Guennebaud <g.gael@free.fr> | 2009-07-28 17:35:07 +0200 |
commit | 54804eb62642ab1be510e41db9b573c6f6151bf2 (patch) | |
tree | 76eda2dedb4a66be0072425ebd110546211f1f71 /test/adjoint.cpp | |
parent | 264fe82c655a26f3c3ab5057684dbc51cf533056 (diff) | |
parent | 562864bcfb363f603f40ce716c49539fcd1565d3 (diff) |
synch with main branch
Diffstat (limited to 'test/adjoint.cpp')
-rw-r--r-- | test/adjoint.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/adjoint.cpp b/test/adjoint.cpp index 1f4aa7427..47e1bd740 100644 --- a/test/adjoint.cpp +++ b/test/adjoint.cpp @@ -76,8 +76,8 @@ template<typename MatrixType> void adjoint(const MatrixType& m) { VERIFY_IS_MUCH_SMALLER_THAN(vzero.norm(), static_cast<RealScalar>(1)); VERIFY_IS_APPROX(v1.norm(), v1.stableNorm()); - // NOTE disabled because it currently compiles for float and double only - // VERIFY_IS_APPROX(v1.blueNorm(), v1.stableNorm()); + VERIFY_IS_APPROX(v1.blueNorm(), v1.stableNorm()); + VERIFY_IS_APPROX(v1.hypotNorm(), v1.stableNorm()); } // check compatibility of dot and adjoint |