From fca73852f177b52fbdff4ae2b70562fadce0f3db Mon Sep 17 00:00:00 2001 From: Richard Roberts Date: Fri, 29 Oct 2010 16:11:06 +0000 Subject: [PATCH] Removed assert(false) that I thought was never called --- gtsam/linear/NoiseModel.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/gtsam/linear/NoiseModel.cpp b/gtsam/linear/NoiseModel.cpp index 36b8e5663..4ebacc3b0 100644 --- a/gtsam/linear/NoiseModel.cpp +++ b/gtsam/linear/NoiseModel.cpp @@ -122,8 +122,6 @@ void Gaussian::WhitenInPlace(MatrixColMajor& H) const { // General QR, see also special version in Constrained SharedDiagonal Gaussian::QR(Matrix& Ab, boost::optional&> firstZeroRows) const { - assert(false); - // get size(A) and maxRank // TODO: really no rank problems ? size_t m = Ab.size1(), n = Ab.size2()-1;