1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-10 03:17:07 +01:00

Merge pull request #221 from fionnoh/bugfix/A2ALoop

Bugfix for A2ALoop module
This commit is contained in:
2019-07-03 14:13:51 +01:00
committed by GitHub

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]);
}
}