From 5fa1b4b00e1c6e88a9d05e8f3f601b913fd836b9 Mon Sep 17 00:00:00 2001 From: Richard Roberts Date: Fri, 22 Jun 2012 22:51:34 +0000 Subject: [PATCH] Removed spurious print statement --- gtsam/base/tests/testLieMatrix.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/gtsam/base/tests/testLieMatrix.cpp b/gtsam/base/tests/testLieMatrix.cpp index e4070d338..aad28563c 100644 --- a/gtsam/base/tests/testLieMatrix.cpp +++ b/gtsam/base/tests/testLieMatrix.cpp @@ -50,7 +50,6 @@ TEST( LieMatrix, other_constructors ) { /* ************************************************************************* */ TEST(LieMatrix, retract) { LieMatrix init(2,2, 1.0,2.0,3.0,4.0); - init.print("init: "); Vector update = Vector_(4, 3.0, 4.0, 6.0, 7.0); LieMatrix expected(2,2, 4.0, 6.0, 9.0, 11.0);