Correct typo in S(q,t) exec

This commit is contained in:
J.-S. Caux 2019-12-09 08:54:36 +01:00
부모 10b10574c6
커밋 694578be19
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제

파일 보기

@ -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();