From 75856f29454eaa3cfd7f002fa90ebd074ba663f4 Mon Sep 17 00:00:00 2001 From: Guido Cossu Date: Thu, 25 May 2017 12:44:56 +0100 Subject: [PATCH] Compilation fix in the Tensor_exp --- lib/tensors/Tensor_exp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tensors/Tensor_exp.h b/lib/tensors/Tensor_exp.h index 2f584134..e18fed70 100644 --- a/lib/tensors/Tensor_exp.h +++ b/lib/tensors/Tensor_exp.h @@ -127,7 +127,7 @@ template::Tens mat unit(1.0); mat temp(unit); for(int i=Nexp; i>=1;--i){ - temp *= alpha/ReadD(i); + temp *= alpha/RealD(i); temp = unit + temp*arg; } return temp;