Correct typo in S(q,t) exec

This commit is contained in:
J.-S. Caux 2019-12-09 08:54:36 +01:00
rodzic 10b10574c6
commit 694578be19
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -66,7 +66,7 @@ int main(int argc, char* argv[])
while (RAW_infile.peek() != EOF) {
RAW_infile >> omega >> iK >> FF >> dev >> label;
for (int it = 0; it < Npts_t; ++it)
for (int it = 0; it <= Npts_t; ++it)
FT[it][iK] += FF * FF * exp(II * omega * tlattice[it]);
}
RAW_infile.close();