From 39fc5b3717e2ebb7198184c79743f328852e3a9d Mon Sep 17 00:00:00 2001 From: Tomas Oberhuber <tomas.oberhuber@fjfi.cvut.cz> Date: Fri, 13 May 2016 14:28:39 +0200 Subject: [PATCH] Fixing a bug in addVectors. --- src/core/vectors/tnlVectorOperationsHost_impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/vectors/tnlVectorOperationsHost_impl.h b/src/core/vectors/tnlVectorOperationsHost_impl.h index cd7a4b4810..c2c9b1eed1 100644 --- a/src/core/vectors/tnlVectorOperationsHost_impl.h +++ b/src/core/vectors/tnlVectorOperationsHost_impl.h @@ -454,7 +454,7 @@ addVectors( Vector1& v, #pragma omp parallel for if( tnlOmp::isEnabled() && n > OpenMPVectorOperationsThreshold ) // TODO: check this threshold #endif for( Index i = 0; i < n; i ++ ) - v[ i ] = thisMultiplicator * v[ i ] * multiplicator1 * v1[ i ] + multiplicator2 * v2[ i ]; + v[ i ] = thisMultiplicator * v[ i ] + multiplicator1 * v1[ i ] + multiplicator2 * v2[ i ]; } template< typename Vector > -- GitLab