From 5eb9302a0b5864e779d92d74842fffa71d6f674c Mon Sep 17 00:00:00 2001 From: Norihiro Watanabe <norihiro.watanabe@ufz.de> Date: Tue, 14 Jun 2016 14:26:05 +0200 Subject: [PATCH] fix set() for EigenVector --- MathLib/LinAlg/BLAS.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MathLib/LinAlg/BLAS.cpp b/MathLib/LinAlg/BLAS.cpp index 3016808abff..84d2376fbec 100644 --- a/MathLib/LinAlg/BLAS.cpp +++ b/MathLib/LinAlg/BLAS.cpp @@ -225,9 +225,9 @@ namespace MathLib { namespace BLAS // Vector -void set(EigenVector const& x, double const a) +void set(EigenVector& x, double const a) { - x.getRawVector() = a; + x.getRawVector().setConstant(a); } void copy(EigenVector const& x, EigenVector& y) -- GitLab