From 931e4e99808a83e8c9a12e4e5562c45f0eb3346c Mon Sep 17 00:00:00 2001 From: Jonathan Lambrechts <jonathan.lambrechts@uclouvain.be> Date: Sat, 11 Dec 2010 09:19:14 +0000 Subject: [PATCH] dg : one more bug ... from my same commit again ... --- Numeric/fullMatrix.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Numeric/fullMatrix.h b/Numeric/fullMatrix.h index d7ea21b523..6a29640b46 100644 --- a/Numeric/fullMatrix.h +++ b/Numeric/fullMatrix.h @@ -490,7 +490,7 @@ class fullMatrix #endif ; - void print(const std::string name = "") const + void print(const std::string name = "", const char *format = "%12.5E ") const { printf("Printing matrix %s:\n", name.c_str()); int ni = size1(); @@ -498,7 +498,7 @@ class fullMatrix for(int I = 0; I < ni; I++){ printf(" "); for(int J = 0; J < nj; J++){ - printf("%12.5E ", (*this)(I, J)); + printf(format, (*this)(I, J)); } printf("\n"); } -- GitLab