From 944a437272cd622515511ebc029923cb6038cb11 Mon Sep 17 00:00:00 2001 From: Varun Agrawal Date: Wed, 17 Jun 2020 14:54:55 -0500 Subject: [PATCH] don't align matrix columns --- gtsam/base/Matrix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtsam/base/Matrix.h b/gtsam/base/Matrix.h index 61cbf3e2a..e19fb9dd6 100644 --- a/gtsam/base/Matrix.h +++ b/gtsam/base/Matrix.h @@ -79,7 +79,7 @@ typedef Eigen::Block ConstSubMatrix; // Matrix formatting arguments when printing. Akin to Matlab style. const Eigen::IOFormat matlab( Eigen::StreamPrecision, // precision - 0, // flags + Eigen::DontAlignCols, // flags set such that rowSpacers are not added ", ", // coeffSeparator ";\n", // rowSeparator "\t", // rowPrefix