Mercurial > hg > silvet
changeset 111:9b299b087dd4 bqvec-openmp
Fixed order of with_gain function in bqvec, updating correspondingly
author | Chris Cannam |
---|---|
date | Wed, 07 May 2014 08:55:44 +0100 |
parents | 16d6e2f6f159 |
children | 2169e7a448c5 |
files | src/EM.cpp |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/EM.cpp Tue May 06 16:38:39 2014 +0100 +++ b/src/EM.cpp Wed May 07 08:55:44 2014 +0100 @@ -153,7 +153,7 @@ const double *w = templateFor(i, n, f); const double shift = m_shifts[f][n]; const double factor = pitch * source * shift; - v_add_with_gain(m_estimate, w, m_binCount, factor); + v_add_with_gain(m_estimate, w, factor, m_binCount); } } }