Add BlockWeight, modify error check so zero variance computed and expected will pass

git-svn-id: https://subversion.assembla.com/svn/qmcdev/trunk@6570 e5b18d87-469d-4833-9cc0-8cdfa06e9491
This commit is contained in:
Paul Kent 2015-09-10 18:20:51 +00:00
parent 08f1d5c844
commit f57d72a104
1 changed files with 3 additions and 2 deletions

View File

@ -124,7 +124,8 @@ def read_command_line():
lpp = 'LocalECP',
nlpp = 'NonLocalECP',
mpc = 'MPC',
kec = 'KEcorr'
kec = 'KEcorr',
bw = 'BlockWeight'
)
for qshort in sorted(quantities.keys()):
@ -240,7 +241,7 @@ def check_values(options,quants_check,values):
error_ref = ref[2*ns+1]
mean_comp,error_comp = values[s][q]
success &= abs(mean_comp-mean_ref) < options.nsigma*error_ref
success &= abs(mean_comp-mean_ref) <= options.nsigma*error_ref
#end for
ns+=1
#end for