1
0
mirror of https://github.com/TREX-CoE/qmc-lttc.git synced 2024-06-28 16:13:06 +02:00

Merge pull request #3 from neelravi/patch-1

variable was incorrectly used
This commit is contained in:
Anthony Scemama 2021-02-02 16:40:53 +01:00 committed by GitHub
commit 2ee80b9bb3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,7 +39,7 @@ def MonteCarlo(a,nmax,dt):
d2_old = d2_new
psi_old = psi_new
return energy/nmax, accep_rate/nmax
return energy/nmax, N_accep/nmax
# Run simulation