1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-09 23:45:36 +00:00

Merge pull request #221 from fionnoh/bugfix/A2ALoop

Bugfix for A2ALoop module
This commit is contained in:
Antonin Portelli 2019-07-03 14:13:51 +01:00 committed by GitHub
commit ab7537e002
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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