1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-10 07:55:35 +00:00

Bugfix for A2ALoop module

This commit is contained in:
fionnoh 2019-06-27 13:49:55 +08:00
parent b120ef1fe4
commit 1059189abf

View File

@ -112,7 +112,7 @@ void TA2ALoop<FImpl>::execute(void)
loop = zero;
for (unsigned int i = 0; i < left.size(); ++i)
{
loop += outerProduct(adj(left[i]), right[i]);
loop += outerProduct(left[i], right[i]);
}
}