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

rm unncessary line

This commit is contained in:
Alessandro Lupo 2023-06-23 14:55:23 +01:00
parent e07fafe46a
commit 2822487450

View File

@ -220,8 +220,7 @@ public:
for (int a = 0; a < Dimension; a++) {
tmp = transpose(eij[a]*ta[Index]) + transpose(eij[a]) * ta[Index];
for (int b = 0; b < Dimension; b++) {
iGroupMatrix<cplx> tmp1 = tmp * eij[b];
Complex iTr = TensorRemove(timesI(trace(tmp1)));
Complex iTr = TensorRemove(timesI(trace(tmp * eij[b])));
i2indTa()()(a, b) = iTr;
}
}